-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaudiocheckerfunctions.json
80 lines (80 loc) · 2.53 KB
/
audiocheckerfunctions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"author": "",
"category": "",
"extensionNamespace": "",
"fullName": "Sound Checker",
"helpPath": "",
"iconUrl": "",
"name": "AudioCheckerFunctions",
"previewIconUrl": "",
"shortDescription": "",
"version": "",
"description": "",
"tags": [],
"authorIds": [],
"dependencies": [],
"eventsFunctions": [
{
"description": "Check if sound is preloaded",
"fullName": "Check if sound is preloaded",
"functionType": "Condition",
"group": "Audio",
"name": "CheckIfSoundIsPreloaded",
"sentence": "Check if sound _PARAM1_ is preloaded",
"events": [
{
"type": "BuiltinCommonInstructions::Standard",
"conditions": [],
"actions": []
},
{
"type": "BuiltinCommonInstructions::JsCode",
"inlineCode": "\nconst SoundManager = runtimeScene.getGame().getSoundManager();\nconst FullPath = eventsFunctionContext.getArgument(\"Filename\");\nconst FileName = SoundManager._availableResources[FullPath].file;\n\neventsFunctionContext.returnValue = (SoundManager._loadedSounds[FileName] != undefined);",
"parameterObjects": "",
"useStrict": true,
"eventsSheetExpanded": false
}
],
"parameters": [
{
"description": "Filename",
"name": "Filename",
"type": "soundfile"
}
],
"objectGroups": []
},
{
"description": "Check if music is preloaded",
"fullName": "Check if music is preloaded",
"functionType": "Condition",
"group": "Audio",
"name": "CheckIfMusicIsPreloaded",
"sentence": "Check if music _PARAM1_ is preloaded",
"events": [
{
"type": "BuiltinCommonInstructions::Standard",
"conditions": [],
"actions": []
},
{
"type": "BuiltinCommonInstructions::JsCode",
"inlineCode": "\nconst SoundManager = runtimeScene.getGame().getSoundManager();\nconst FullPath = eventsFunctionContext.getArgument(\"Filename\");\nconst FileName = SoundManager._availableResources[FullPath].file;\n\neventsFunctionContext.returnValue = (SoundManager._loadedMusics[FileName] != undefined);",
"parameterObjects": "",
"useStrict": true,
"eventsSheetExpanded": false
}
],
"parameters": [
{
"description": "Filename",
"name": "Filename",
"type": "soundfile"
}
],
"objectGroups": []
}
],
"eventsBasedBehaviors": [],
"eventsBasedObjects": []
}