gdcore-tools 2.0.0-gd-v5.5.226-autobuild → 2.0.0-gd-v5.5.228-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/3D/Model3DRuntimeObject.js +1 -1
- package/dist/Runtime/Extensions/3D/Model3DRuntimeObject.js.map +2 -2
- package/dist/Runtime/Extensions/3D/Model3DRuntimeObject3DRenderer.js +1 -1
- package/dist/Runtime/Extensions/3D/Model3DRuntimeObject3DRenderer.js.map +2 -2
- package/dist/Runtime/Extensions/AnchorBehavior/anchorruntimebehavior.js +1 -1
- package/dist/Runtime/Extensions/AnchorBehavior/anchorruntimebehavior.js.map +2 -2
- package/dist/Runtime/Extensions/Physics2Behavior/JsExtension.js +4 -4
- package/dist/Runtime/Extensions/Physics3DBehavior/JsExtension.js +4 -2
- package/dist/lib/libGD.cjs +1 -1
- package/dist/lib/libGD.wasm +0 -0
- package/gd.d.ts +4 -1
- package/package.json +1 -1
package/dist/lib/libGD.wasm
CHANGED
|
Binary file
|
package/gd.d.ts
CHANGED
|
@@ -1259,6 +1259,8 @@ export class SharedPtrSerializerElement extends EmscriptenObject {
|
|
|
1259
1259
|
export class Serializer extends EmscriptenObject {
|
|
1260
1260
|
static toJSON(element: SerializerElement): string;
|
|
1261
1261
|
static fromJSON(json: string): SerializerElement;
|
|
1262
|
+
static fromJSObject(object: Object): gdSerializerElement;
|
|
1263
|
+
static toJSObject(element: gdSerializerElement): any;
|
|
1262
1264
|
}
|
|
1263
1265
|
|
|
1264
1266
|
export class ObjectAssetSerializer extends EmscriptenObject {
|
|
@@ -1701,7 +1703,6 @@ export class PlatformExtension extends EmscriptenObject {
|
|
|
1701
1703
|
getLicense(): string;
|
|
1702
1704
|
getHelpPath(): string;
|
|
1703
1705
|
getIconUrl(): string;
|
|
1704
|
-
isBuiltin(): boolean;
|
|
1705
1706
|
getNameSpace(): string;
|
|
1706
1707
|
addDuplicatedAction(newActionName: string, copiedActionName: string): InstructionMetadata;
|
|
1707
1708
|
addDuplicatedCondition(newConditionName: string, copiedConditionName: string): InstructionMetadata;
|
|
@@ -2067,7 +2068,9 @@ export class MetadataProvider extends EmscriptenObject {
|
|
|
2067
2068
|
static getObjectStrExpressionMetadata(p: Platform, objectType: string, type: string): ExpressionMetadata;
|
|
2068
2069
|
static getBehaviorStrExpressionMetadata(p: Platform, autoType: string, type: string): ExpressionMetadata;
|
|
2069
2070
|
static isBadExpressionMetadata(metadata: ExpressionMetadata): boolean;
|
|
2071
|
+
static isBadInstructionMetadata(metadata: InstructionMetadata): boolean;
|
|
2070
2072
|
static isBadBehaviorMetadata(metadata: BehaviorMetadata): boolean;
|
|
2073
|
+
static isBadObjectMetadata(metadata: ObjectMetadata): boolean;
|
|
2071
2074
|
}
|
|
2072
2075
|
|
|
2073
2076
|
export class ProjectDiagnostic extends EmscriptenObject {
|
package/package.json
CHANGED