@luminocity/lemonate-engine 26.3.15 → 26.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/items/AudioCollectionItem.d.ts +5 -1
- package/dist/items/MaterialCollectionItem.d.ts +0 -1
- package/dist/items/MeshCollectionItem.d.ts +5 -1
- package/dist/lemonate.es.js +47 -32
- package/dist/lemonate.js +47 -32
- package/dist/lemonate.min.js +4 -4
- package/dist/lemonate.umd.js +47 -32
- package/dist/player.zip +0 -0
- package/dist/subsystems/scripting/runtime/RtSceneObject.d.ts +6 -1
- package/package.json +2 -2
|
@@ -18,7 +18,11 @@ export declare class AudioCollectionItem extends Item {
|
|
|
18
18
|
_removeLinkedAudio(): Promise<void>;
|
|
19
19
|
_enumerateChildren(): Item[];
|
|
20
20
|
_getDisplayNameFromListEntry(listEntry: ListEntry): any;
|
|
21
|
-
|
|
21
|
+
getDisplayEntries(): {
|
|
22
|
+
value: string;
|
|
23
|
+
label: string;
|
|
24
|
+
item: any;
|
|
25
|
+
}[];
|
|
22
26
|
getDisplayNameFromAudio(audio: AudioItem): string | null;
|
|
23
27
|
getIdFromDisplayName(name: string): string | null;
|
|
24
28
|
findAudioByInstanceId(instanceId: string): AudioItem | null;
|
|
@@ -19,7 +19,6 @@ export declare class MaterialCollectionItem extends Item {
|
|
|
19
19
|
_removeLinkedMaterial(): Promise<void>;
|
|
20
20
|
_enumerateChildren(): MaterialItem[];
|
|
21
21
|
_getDisplayNameFromListEntry(listEntry: ListEntry): any;
|
|
22
|
-
getDisplayNames(): string[];
|
|
23
22
|
getDisplayNameFromMaterial(material: MaterialItem): any;
|
|
24
23
|
getIdFromDisplayName(name: string): string | null;
|
|
25
24
|
findMaterialByInstanceId(instanceId: string): MaterialItem | null;
|
|
@@ -19,7 +19,11 @@ export declare class MeshCollectionItem extends Item {
|
|
|
19
19
|
_removeLinkedMesh(): Promise<void>;
|
|
20
20
|
_enumerateChildren(): MeshItem[];
|
|
21
21
|
_getDisplayNameFromListEntry(listEntry: ListEntry): string | undefined;
|
|
22
|
-
|
|
22
|
+
getDisplayEntries(): {
|
|
23
|
+
value: string;
|
|
24
|
+
label: string;
|
|
25
|
+
item: any;
|
|
26
|
+
}[];
|
|
23
27
|
getDisplayNameFromMesh(mesh: MeshItem): string | undefined;
|
|
24
28
|
getIdFromDisplayName(name: string): string | null;
|
|
25
29
|
findMeshByInstanceId(instanceId: string): MeshItem | null;
|