|
1 | 1 | { |
2 | 2 | "firstLayout": "Menu", |
3 | 3 | "gdVersion": { |
4 | | - "build": 262, |
| 4 | + "build": 265, |
5 | 5 | "major": 5, |
6 | 6 | "minor": 6, |
7 | 7 | "revision": 0 |
|
87 | 87 | "playableDevices": [ |
88 | 88 | "keyboard", |
89 | 89 | "gamepad", |
90 | | - "mobile", |
91 | 90 | "mobile" |
92 | 91 | ], |
93 | 92 | "extensionProperties": [], |
|
1266 | 1265 | "name": "RoadBend" |
1267 | 1266 | } |
1268 | 1267 | ] |
| 1268 | + }, |
| 1269 | + { |
| 1270 | + "name": "Light", |
| 1271 | + "objects": [ |
| 1272 | + { |
| 1273 | + "name": "NewSpotLight" |
| 1274 | + }, |
| 1275 | + { |
| 1276 | + "name": "NewPointLight" |
| 1277 | + } |
| 1278 | + ] |
1269 | 1279 | } |
1270 | 1280 | ], |
1271 | 1281 | "variables": [ |
|
7352 | 7362 | "variant": "", |
7353 | 7363 | "variables": [], |
7354 | 7364 | "effects": [], |
7355 | | - "behaviors": [], |
| 7365 | + "behaviors": [ |
| 7366 | + { |
| 7367 | + "name": "Tween", |
| 7368 | + "type": "Tween::TweenBehavior" |
| 7369 | + } |
| 7370 | + ], |
7356 | 7371 | "content": { |
7357 | 7372 | "ShadowQuality": "High", |
7358 | 7373 | "Intensity": 4, |
|
8856 | 8871 | "value": "Tween::IsPlaying" |
8857 | 8872 | }, |
8858 | 8873 | "parameters": [ |
8859 | | - "NewSpotLight", |
| 8874 | + "Light", |
8860 | 8875 | "Tween", |
8861 | 8876 | "\"Color\"" |
8862 | 8877 | ] |
|
8874 | 8889 | "" |
8875 | 8890 | ] |
8876 | 8891 | }, |
| 8892 | + { |
| 8893 | + "type": { |
| 8894 | + "value": "Light3D::PointLight3D::SetColor" |
| 8895 | + }, |
| 8896 | + "parameters": [ |
| 8897 | + "NewPointLight", |
| 8898 | + "=", |
| 8899 | + "\"208;2;27\"", |
| 8900 | + "" |
| 8901 | + ] |
| 8902 | + }, |
8877 | 8903 | { |
8878 | 8904 | "type": { |
8879 | 8905 | "value": "Tween::TweenBehavior::AddObjectColorTween2" |
8880 | 8906 | }, |
8881 | 8907 | "parameters": [ |
8882 | | - "NewSpotLight", |
| 8908 | + "Light", |
8883 | 8909 | "Tween", |
8884 | 8910 | "\"Color\"", |
8885 | 8911 | "\"248;231;28\"", |
|
42558 | 42584 | "}", |
42559 | 42585 | "", |
42560 | 42586 | "const editorLightCountMax = {", |
42561 | | - " value: 4", |
| 42587 | + " value: 20", |
42562 | 42588 | "};", |
42563 | 42589 | "", |
42564 | 42590 | "const lightCountMax = {", |
@@ -43132,10 +43158,11 @@ |
43132 | 43158 | "if (!object.setColor && !object.getColor) {", |
43133 | 43159 | " const prototype = Object.getPrototypeOf(object);", |
43134 | 43160 | " prototype.setColor = function(tint) {", |
43135 | | - " this.SetColor(tint, eventsFunctionContext);", |
| 43161 | + " this._setColor(tint);", |
| 43162 | + " this.__spotLightAdapter.setColor(tint);", |
43136 | 43163 | " }", |
43137 | 43164 | " prototype.getColor = function() {", |
43138 | | - " return this.Color(eventsFunctionContext);", |
| 43165 | + " return this._getColor(eventsFunctionContext);", |
43139 | 43166 | " }", |
43140 | 43167 | "}", |
43141 | 43168 | "" |
@@ -45217,10 +45244,11 @@ |
45217 | 45244 | "if (!object.setColor && !object.getColor) {", |
45218 | 45245 | " const prototype = Object.getPrototypeOf(object);", |
45219 | 45246 | " prototype.setColor = function(tint) {", |
45220 | | - " this.SetColor(tint, eventsFunctionContext);", |
| 45247 | + " this._setColor(tint);", |
| 45248 | + " this.__pointLightAdapter.setColor(tint);", |
45221 | 45249 | " }", |
45222 | 45250 | " prototype.getColor = function() {", |
45223 | | - " return this.Color(eventsFunctionContext);", |
| 45251 | + " return this._getColor(eventsFunctionContext);", |
45224 | 45252 | " }", |
45225 | 45253 | "}", |
45226 | 45254 | "" |
|
0 commit comments