property resourceCount

(r/o) int32 resourceCount;

Typ

Zugriff

This property returns back the total number of resources contained in this library.
var lib = scene.library;
if (lib)
{
    shell.print("There are " + lib.resourceCount + " resources in this library.");
}