robert.malzan
Forum Replies Created
-
AuthorPosts
-
April 3, 2025 at 4:08 pm #1434
It turns out, the Runtime Compiler has a “White List”. Any usings of namespaces which are not in the White List will be purged. This is to ensure nobody calls dangerous commands which may harm the device/computer it’s running on. Think of the harm you could do with “using System.IO”…
Linq will be in the White List in our next release. We also plan to publish this list so everyone can check against it or request that we expand it.
April 3, 2025 at 4:00 pm #1433I guess, send me your node code and I’ll check what’s wrong with it. Are you sure that the script which has an Instance variable is added somewhere to a GameObject? Otherwise the class was never instantiated and really doesn’t exist.
April 2, 2025 at 3:54 pm #1430Good news: adressing .entries[x][y] now works just fine.
This example will debug print first “5.75” and then “New Text: World”. Wait for our next Release!
April 2, 2025 at 3:49 pm #1429Like I said in the tutorial, the solution is to only respond to button down, but in the logic above you increment on every change (button down and up), so the counter counts 2 each button press. To avoid that, add an if node with the New Value output of your button signal as the condition. Then only increment on the true output of the if node.
April 2, 2025 at 12:19 pm #1424Maybe this helps some…
{
“dependencies”: {
“com.nuro.processes”: “file:../../processes”,
“com.nuro.world-builder.asset-management”: “file:../../wb-asset-management”,
“com.nuro.world-builder.node-editor”: “file:../../wb-node-editor”,
“com.nuro.world-builder.plugin-core”: “file:../../wb-plugin-core”,
“com.nuro.built-in-assets”: “file:../../built-in-assets”,
“com.nuro.world-builder.runtime-scripting”: “file:../../wb-runtime-scripting”,
“com.paps.unity-toolbar-extender-ui-toolkit”: “https://github.com/Sammmte/unity-toolbar-extender-ui-toolkit.git?path=/Assets/Package”,
“com.unity.2d.sprite”: “1.0.0”,
“com.unity.ai.navigation”: “2.0.5”,
“com.unity.cloud.gltfast”: “6.10.1”,
“com.unity.editorcoroutines”: “1.0.0”,
“com.unity.ide.rider”: “3.0.34”,
“com.unity.ide.visualstudio”: “2.0.22”,
“com.unity.inputsystem”: “1.12.0”,
“com.unity.nuget.newtonsoft-json”: “3.2.1”,
“com.unity.recorder”: “5.1.2”,
“com.unity.render-pipelines.universal”: “17.0.3”,
“com.unity.sharp-zip-lib”: “1.3.9”,
“com.unity.test-framework”: “1.4.5”,
“com.unity.timeline”: “1.8.7”,
“com.unity.ugui”: “2.0.0”,
“com.unity.vectorgraphics”: “2.0.0-preview.25”,
“com.unity.xr.interaction.toolkit”: “3.0.7”,
“com.unity.modules.accessibility”: “1.0.0”,
“com.unity.modules.ai”: “1.0.0”,
“com.unity.modules.androidjni”: “1.0.0”,
“com.unity.modules.animation”: “1.0.0”,
“com.unity.modules.assetbundle”: “1.0.0”,
“com.unity.modules.audio”: “1.0.0”,
“com.unity.modules.cloth”: “1.0.0”,
“com.unity.modules.director”: “1.0.0”,
“com.unity.modules.imageconversion”: “1.0.0”,
“com.unity.modules.imgui”: “1.0.0”,
“com.unity.modules.jsonserialize”: “1.0.0”,
“com.unity.modules.particlesystem”: “1.0.0”,
“com.unity.modules.physics”: “1.0.0”,
“com.unity.modules.physics2d”: “1.0.0”,
“com.unity.modules.screencapture”: “1.0.0”,
“com.unity.modules.terrain”: “1.0.0”,
“com.unity.modules.terrainphysics”: “1.0.0”,
“com.unity.modules.tilemap”: “1.0.0”,
“com.unity.modules.ui”: “1.0.0”,
“com.unity.modules.uielements”: “1.0.0”,
“com.unity.modules.umbra”: “1.0.0”,
“com.unity.modules.unityanalytics”: “1.0.0”,
“com.unity.modules.unitywebrequest”: “1.0.0”,
“com.unity.modules.unitywebrequestassetbundle”: “1.0.0”,
“com.unity.modules.unitywebrequestaudio”: “1.0.0”,
“com.unity.modules.unitywebrequesttexture”: “1.0.0”,
“com.unity.modules.unitywebrequestwww”: “1.0.0”,
“com.unity.modules.vehicles”: “1.0.0”,
“com.unity.modules.video”: “1.0.0”,
“com.unity.modules.vr”: “1.0.0”,
“com.unity.modules.wind”: “1.0.0”,
“com.unity.modules.xr”: “1.0.0”
}
}April 1, 2025 at 11:22 am #1421I could reproduce the problem on my end. It turns out that your glb object does not have a root element like the glb files we tested with. We fixed this issue now and you’ll receive it in the next release. However, you could probably already get it to work if you exported your model with a root object.
March 31, 2025 at 3:59 pm #1417You sent me an obj file with external materials. This does not work in the World Builder. Can you please send a glb file instead?
March 31, 2025 at 3:50 pm #1415This should do it. Replace “Start” with the flow when you wish to increment the score.
March 31, 2025 at 10:03 am #1410Sure. Please send your model (as a glb) to me: robert.malzan@nurogames.com. If it is very large you could upload it to your OneDrive or Google Drive account and send me the download link instead.
March 31, 2025 at 10:01 am #1409Many things may have gone wrong. I suggest you check the error output from the World Builder after each code import (press F12) to make sure the code compiled properly. Then, you need to restart the World Builder when you change any of the already imported code or folder with code (because the ‘old’ code is already bound to the World Builder).
If all else fails, you can post the code here and maybe we can figure out together what’s going wrong.
March 31, 2025 at 9:54 am #1407You wrote
By trying to do this, we also realized that in order to be able to properly see the game objects when their visibility becomes true, we have to set their visibility to false at start in the logic editor. If we set them not visible in the location view, when we activate their visibility by clicking the buttons, they lose some features. Is this expected?
Yes, this is a bug.
As for the first part, may I see the logic? I need to see the diagram and perhaps also the signals page.
March 31, 2025 at 9:50 am #1406I recommend using a Signal variable for this purpose. The variable could be of float or integer type (whatever you want) and would not need a cast.
March 27, 2025 at 8:34 am #1394I recommend exporting the model in glb file format. As far as we know, this should work.
– Bob
-
This reply was modified 1 week, 1 day ago by
robert.malzan.
-
This reply was modified 1 week, 1 day ago by
-
AuthorPosts