mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 01:25:32 -04:00
21 lines
544 B
TypeScript
21 lines
544 B
TypeScript
namespace gdjs {
|
|
export namespace evtTools {
|
|
export namespace platform {
|
|
export const isOnPlatform = function (
|
|
objectsLists1: Hashtable<Array<gdjs.RuntimeObject>>,
|
|
behaviorName: string,
|
|
objectsLists2: Hashtable<Array<gdjs.RuntimeObject>>,
|
|
inverted: boolean
|
|
) {
|
|
return gdjs.evtTools.object.twoListsTest(
|
|
gdjs.PlatformRuntimeBehavior.isOnPlatformTest,
|
|
objectsLists1,
|
|
objectsLists2,
|
|
inverted,
|
|
behaviorName
|
|
);
|
|
};
|
|
}
|
|
}
|
|
}
|