Skip to content

Commit

Permalink
Add warning about setting ELF script on Sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
fwsGonzo committed Dec 4, 2024
1 parent 6487d28 commit e182605
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/godot_intro/sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ func _ready() -> void:

You can also reach Sandbox properties from the node.

:::warning

It is very tempting to assign an ELF program as the script to a Sandbox node. Don't do that. Calls you make to the Sandbox node will not go to the script first. The empty Sandbox will fail on random things and just appear confusing. Just make a regular Node and assign the ELF to that. You can use a Sandbox node, but don't set an ELF program as the script.

:::


![attach signal](/img/sandbox/attach_signal.png)

Expand Down

0 comments on commit e182605

Please sign in to comment.