Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions extensions/community/A3F.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "",
"category": "General",
"dimension": "",
"dimension": "3D",
"extensionNamespace": "",
"fullName": "Advanced 3D Features",
"gdevelopVersion": "",
Expand All @@ -10,7 +10,7 @@
"name": "A3F",
"previewIconUrl": "https://asset-resources.gdevelop.io/public-resources/Icons/Line Hero Pack/Master/SVG/Graphic Design/f4c71080f9213188ee5556b1acb45ad46fe6e5225947301c363105b080fca008_Graphic Design_3d_cube_isometric.svg",
"shortDescription": "This extension adds features to the built-in 3D.",
"version": "1.4.1",
"version": "1.4.2",
"description": [
"3D features added by this extension: ",
"- Lighting",
Expand Down Expand Up @@ -1299,6 +1299,7 @@
"Object2D._rotationX = gdjs.toDegrees(Object3D.rotation.x);",
"Object2D._rotationY = gdjs.toDegrees(Object3D.rotation.y);",
"Object2D.setAngle(gdjs.toDegrees(Object3D.rotation.z));",
"",
""
],
"parameterObjects": "Object",
Expand Down Expand Up @@ -3010,7 +3011,7 @@
"const Object2D = objects[0];",
"const Target2D = TargetObjects[0];",
"const Object3D = Object2D.get3DRendererObject();",
"const Target3D = TargetObject2D.get3DRendererObject();",
"const Target3D = Target2D.get3DRendererObject();",
"let Distance = 0;",
"if (Object3D && Target3D) {",
" let ObjectPos;",
Expand Down