Click or drag to resize

ArticyDatabaseIsObjectInLoadedPackages Method

Determines whether the given object is in currently loaded packages.

Namespace:  Articy.Unity
Assembly:  ArticyRuntime (in ArticyRuntime.dll) Version: 1.0.3
Syntax
C#
public static bool IsObjectInLoadedPackages(
	ArticyObject aObject
)

Parameters

aObject
Type: Articy.UnityArticyObject
Object in question.

Return Value

Type: Boolean
true if the object is in loaded packages; otherwise, false.
Remarks

This method works differently depending on if it is called in the editor or in editor playing/standalone. If its called from the editor this will return true if the package is marked as load on startup IsDefaultPackage, otherwise its only true if the object is actually loaded.

See Also