gdcore-tools 2.0.0-gd-v5.4.219-autobuild → 2.0.0-gd-v5.4.220-autobuild
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/Runtime/Extensions/Physics2Behavior/JsExtension.js +19 -19
- package/dist/Runtime/Extensions/Physics2Behavior/physics2runtimebehavior.js.map +1 -1
- package/dist/Runtime/Extensions/Physics2Behavior/physics2tools.js +1 -1
- package/dist/Runtime/Extensions/Physics2Behavior/physics2tools.js.map +2 -2
- package/dist/Runtime/Extensions/Physics3DBehavior/JsExtension.js +2442 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/Physics3DRuntimeBehavior.js +2 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/Physics3DRuntimeBehavior.js.map +7 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/Physics3DTools.js +2 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/Physics3DTools.js.map +7 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/PhysicsCharacter3DRuntimeBehavior.js +2 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/PhysicsCharacter3DRuntimeBehavior.js.map +7 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/jolt-physics.d.ts +4874 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/jolt-physics.wasm.js +2 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/jolt-physics.wasm.js.map +7 -0
- package/dist/Runtime/Extensions/Physics3DBehavior/jolt-physics.wasm.wasm +0 -0
- package/dist/Runtime/Extensions/PlatformBehavior/platformerobjectruntimebehavior.js.map +2 -2
- package/dist/Runtime/Extensions/TileMap/helper/TileMapHelper.js +1 -1
- package/dist/Runtime/Extensions/TileMap/helper/TileMapHelper.js.map +1 -1
- package/dist/Runtime/RuntimeInstanceContainer.js +1 -1
- package/dist/Runtime/RuntimeInstanceContainer.js.map +2 -2
- package/dist/Runtime/pixi-renderers/pixi-image-manager.js +1 -1
- package/dist/Runtime/pixi-renderers/pixi-image-manager.js.map +2 -2
- package/dist/Runtime/pixi-renderers/runtimegame-pixi-renderer.js +1 -1
- package/dist/Runtime/pixi-renderers/runtimegame-pixi-renderer.js.map +2 -2
- package/dist/lib/libGD.cjs +1 -1
- package/dist/lib/libGD.wasm +0 -0
- package/gd.d.ts +4 -2
- package/package.json +1 -1
|
@@ -695,7 +695,7 @@ module.exports = {
|
|
|
695
695
|
.addCondition(
|
|
696
696
|
'IsDynamic',
|
|
697
697
|
_('Is dynamic'),
|
|
698
|
-
_('
|
|
698
|
+
_('Check if an object is dynamic.'),
|
|
699
699
|
_('_PARAM0_ is dynamic'),
|
|
700
700
|
_('Dynamics'),
|
|
701
701
|
'res/physics32.png',
|
|
@@ -727,7 +727,7 @@ module.exports = {
|
|
|
727
727
|
.addCondition(
|
|
728
728
|
'IsStatic',
|
|
729
729
|
_('Is static'),
|
|
730
|
-
_('
|
|
730
|
+
_('Check if an object is static.'),
|
|
731
731
|
_('_PARAM0_ is static'),
|
|
732
732
|
_('Dynamics'),
|
|
733
733
|
'res/physics32.png',
|
|
@@ -759,7 +759,7 @@ module.exports = {
|
|
|
759
759
|
.addCondition(
|
|
760
760
|
'IsKinematic',
|
|
761
761
|
_('Is kinematic'),
|
|
762
|
-
_('
|
|
762
|
+
_('Check if an object is kinematic.'),
|
|
763
763
|
_('_PARAM0_ is kinematic'),
|
|
764
764
|
_('Dynamics'),
|
|
765
765
|
'res/physics32.png',
|
|
@@ -790,9 +790,9 @@ module.exports = {
|
|
|
790
790
|
aut
|
|
791
791
|
.addCondition(
|
|
792
792
|
'IsBullet',
|
|
793
|
-
_('Is
|
|
794
|
-
_('
|
|
795
|
-
_('_PARAM0_ is bullet'),
|
|
793
|
+
_('Is treated as a bullet'),
|
|
794
|
+
_('Check if the object is being treated as a bullet.'),
|
|
795
|
+
_('_PARAM0_ is treated as a bullet'),
|
|
796
796
|
_('Dynamics'),
|
|
797
797
|
'res/physics32.png',
|
|
798
798
|
'res/physics32.png'
|
|
@@ -825,7 +825,7 @@ module.exports = {
|
|
|
825
825
|
.addCondition(
|
|
826
826
|
'HasFixedRotation',
|
|
827
827
|
_('Has fixed rotation'),
|
|
828
|
-
_('
|
|
828
|
+
_('Check if an object has fixed rotation.'),
|
|
829
829
|
_('_PARAM0_ has fixed rotation'),
|
|
830
830
|
_('Dynamics'),
|
|
831
831
|
'res/physics32.png',
|
|
@@ -859,7 +859,7 @@ module.exports = {
|
|
|
859
859
|
.addCondition(
|
|
860
860
|
'IsSleepingAllowed',
|
|
861
861
|
_('Is sleeping allowed'),
|
|
862
|
-
_('
|
|
862
|
+
_('Check if an object can sleep.'),
|
|
863
863
|
_('_PARAM0_ can sleep'),
|
|
864
864
|
_('Dynamics'),
|
|
865
865
|
'res/physics32.png',
|
|
@@ -898,7 +898,7 @@ module.exports = {
|
|
|
898
898
|
.addCondition(
|
|
899
899
|
'IsSleeping',
|
|
900
900
|
_('Is sleeping'),
|
|
901
|
-
_('
|
|
901
|
+
_('Check if an object is sleeping.'),
|
|
902
902
|
_('_PARAM0_ is sleeping'),
|
|
903
903
|
_('Dynamics'),
|
|
904
904
|
'res/physics32.png',
|
|
@@ -1267,7 +1267,7 @@ module.exports = {
|
|
|
1267
1267
|
.addCondition(
|
|
1268
1268
|
'LayerEnabled',
|
|
1269
1269
|
_('Layer enabled'),
|
|
1270
|
-
_('
|
|
1270
|
+
_('Check if an object has a specific layer enabled.'),
|
|
1271
1271
|
_('_PARAM0_ has layer _PARAM2_ enabled'),
|
|
1272
1272
|
_('Filtering'),
|
|
1273
1273
|
'res/physics32.png',
|
|
@@ -1303,7 +1303,7 @@ module.exports = {
|
|
|
1303
1303
|
.addCondition(
|
|
1304
1304
|
'MaskEnabled',
|
|
1305
1305
|
_('Mask enabled'),
|
|
1306
|
-
_('
|
|
1306
|
+
_('Check if an object has a specific mask enabled.'),
|
|
1307
1307
|
_('_PARAM0_ has mask _PARAM2_ enabled'),
|
|
1308
1308
|
_('Filtering'),
|
|
1309
1309
|
'res/physics32.png',
|
|
@@ -1897,7 +1897,7 @@ module.exports = {
|
|
|
1897
1897
|
.addCondition(
|
|
1898
1898
|
'JointFirstObject',
|
|
1899
1899
|
_('Joint first object'),
|
|
1900
|
-
_('
|
|
1900
|
+
_('Check if an object is the first object on a joint.'),
|
|
1901
1901
|
_('_PARAM0_ is the first object for joint _PARAM2_'),
|
|
1902
1902
|
_('Joints'),
|
|
1903
1903
|
'res/physics32.png',
|
|
@@ -1913,7 +1913,7 @@ module.exports = {
|
|
|
1913
1913
|
.addCondition(
|
|
1914
1914
|
'JointSecondObject',
|
|
1915
1915
|
_('Joint second object'),
|
|
1916
|
-
_('
|
|
1916
|
+
_('Check if an object is the second object on a joint.'),
|
|
1917
1917
|
_('_PARAM0_ is the second object for joint _PARAM2_'),
|
|
1918
1918
|
_('Joints'),
|
|
1919
1919
|
'res/physics32.png',
|
|
@@ -2382,7 +2382,7 @@ module.exports = {
|
|
|
2382
2382
|
.addCondition(
|
|
2383
2383
|
'RevoluteJointLimitsEnabled',
|
|
2384
2384
|
_('Revolute joint limits enabled'),
|
|
2385
|
-
_('
|
|
2385
|
+
_('Check if a revolute joint limits are enabled.'),
|
|
2386
2386
|
_('Limits for revolute joint _PARAM2_ are enabled'),
|
|
2387
2387
|
_('Joints/Revolute'),
|
|
2388
2388
|
'JsPlatform/Extensions/revolute_joint24.png',
|
|
@@ -2461,7 +2461,7 @@ module.exports = {
|
|
|
2461
2461
|
.addCondition(
|
|
2462
2462
|
'RevoluteJointMotorEnabled',
|
|
2463
2463
|
_('Revolute joint motor enabled'),
|
|
2464
|
-
_('
|
|
2464
|
+
_('Check if a revolute joint motor is enabled.'),
|
|
2465
2465
|
_('Motor of revolute joint _PARAM2_ is enabled'),
|
|
2466
2466
|
_('Joints/Revolute'),
|
|
2467
2467
|
'JsPlatform/Extensions/revolute_joint24.png',
|
|
@@ -2700,7 +2700,7 @@ module.exports = {
|
|
|
2700
2700
|
.addCondition(
|
|
2701
2701
|
'PrismaticJointLimitsEnabled',
|
|
2702
2702
|
_('Prismatic joint limits enabled'),
|
|
2703
|
-
_('
|
|
2703
|
+
_('Check if a prismatic joint limits are enabled.'),
|
|
2704
2704
|
_('Limits for prismatic joint _PARAM2_ are enabled'),
|
|
2705
2705
|
_('Joints/Prismatic'),
|
|
2706
2706
|
'JsPlatform/Extensions/prismatic_joint24.png',
|
|
@@ -2779,7 +2779,7 @@ module.exports = {
|
|
|
2779
2779
|
.addCondition(
|
|
2780
2780
|
'PrismaticJointMotorEnabled',
|
|
2781
2781
|
_('Prismatic joint motor enabled'),
|
|
2782
|
-
_('
|
|
2782
|
+
_('Check if a prismatic joint motor is enabled.'),
|
|
2783
2783
|
_('Motor for prismatic joint _PARAM2_ is enabled'),
|
|
2784
2784
|
_('Joints/Prismatic'),
|
|
2785
2785
|
'JsPlatform/Extensions/prismatic_joint24.png',
|
|
@@ -3459,7 +3459,7 @@ module.exports = {
|
|
|
3459
3459
|
.addCondition(
|
|
3460
3460
|
'WheelJointMotorEnabled',
|
|
3461
3461
|
_('Wheel joint motor enabled'),
|
|
3462
|
-
_('
|
|
3462
|
+
_('Check if a wheel joint motor is enabled.'),
|
|
3463
3463
|
_('Motor for wheel joint _PARAM2_ is enabled'),
|
|
3464
3464
|
_('Joints/Wheel'),
|
|
3465
3465
|
'JsPlatform/Extensions/wheel_joint24.png',
|
|
@@ -4203,7 +4203,7 @@ module.exports = {
|
|
|
4203
4203
|
.getCodeExtraInformation()
|
|
4204
4204
|
.addIncludeFile('Extensions/Physics2Behavior/physics2tools.js')
|
|
4205
4205
|
.addIncludeFile('Extensions/Physics2Behavior/physics2runtimebehavior.js')
|
|
4206
|
-
.setFunctionName('gdjs.physics2.
|
|
4206
|
+
.setFunctionName('gdjs.physics2.areObjectsColliding');
|
|
4207
4207
|
|
|
4208
4208
|
extension
|
|
4209
4209
|
.addCondition(
|