.. _doc_scenes_versus_scripts: When to use scenes versus scripts ================================= We've already covered how scenes and scripts are different. Scripts define an engine class extension with imperative code, scenes with declarative code. Each system's capabilities are different as a result. Scenes can define how an extended class initializes, but not what its behavior actually is. Scenes are often used in conjunction with a script, the scene declaring a composition of nodes, and the script adding behaviour with imperative code. Anonymous types --------------- It *is* possible to completely define a scenes' contents using a script alone. This is, in essence, what the Godot Editor does, only in the C++ constructor of its objects. But, choosing which one to use can be a dilemma. Creating script instances is identical to creating in-engine classes whereas handling scenes requires a change in API: .. tabs:: .. code-tab:: gdscript GDScript const MyNode = preload("my_node.gd") const MyScene = preload("my_scene.tscn") var node = Node.new() var my_node = MyNode.new() # Same method call. var my_scene = MyScene.instantiate() # Different method call. var my_inherited_scene = MyScene.instantiate(PackedScene.GEN_EDIT_STATE_MAIN) # Create scene inheriting from MyScene. .. code-tab:: csharp using Godot; public partial class Game : Node { public static CSharpScript MyNode { get; } = GD.Load("res://Path/To/MyNode.cs"); public static PackedScene MyScene { get; } = GD.Load("res://Path/To/MyScene.tscn"); private Node _node; private Node _myNode; private Node _myScene; private Node _myInheritedScene; public Game() { _node = new Node(); _myNode = MyNode.New().As(); // Different than calling new() or MyNode.New(). Instantiated from a PackedScene. _myScene = MyScene.Instantiate(); // Create scene inheriting from MyScene. _myInheritedScene = MyScene.Instantiate(PackedScene.GenEditState.Main); } } Also, scripts will operate a little slower than scenes due to the speed differences between engine and script code. The larger and more complex the node, the more reason there is to build it as a scene. Named types ----------- Scripts can be registered as a new type within the editor itself. This displays it as a new type in the node or resource creation dialog with an optional icon. This way, the user's ability to use the script is much more streamlined. Rather than having to... 1. Know the base type of the script they would like to use. 2. Create an instance of that base type. 3. Add the script to the node. With a registered script, the scripted type instead becomes a creation option like the other nodes and resources in the system. The creation dialog even has a search bar to look up the type by name. There are two systems for registering types: - :ref:`Custom Types ` - Editor-only. Typenames are not accessible at runtime. - Does not support inherited custom types. - An initializer tool. Creates the node with the script. Nothing more. - Editor has no type-awareness of the script or its relationship to other engine types or scripts. - Allows users to define an icon. - Works for all scripting languages because it deals with Script resources in abstract. - Set up using :ref:`EditorPlugin.add_custom_type `. - :ref:`Script Classes ` - Editor and runtime accessible. - Displays inheritance relationships in full. - Creates the node with the script, but can also change types or extend the type from the editor. - Editor is aware of inheritance relationships between scripts, script classes, and engine C++ classes. - Allows users to define an icon. - Engine developers must add support for languages manually (both name exposure and runtime accessibility). - Godot 3.1+ only. - The Editor scans project folders and registers any exposed names for all scripting languages. Each scripting language must implement its own support for exposing this information. Both methodologies add names to the creation dialog, but script classes, in particular, also allow for users to access the typename without loading the script resource. Creating instances and accessing constants or static methods is viable from anywhere. With features like these, one may wish their type to be a script without a scene due to the ease of use it grants users. Those developing plugins or creating in-house tools for designers to use will find an easier time of things this way. On the downside, it also means having to use largely imperative programming. Performance of Script vs PackedScene ------------------------------------ One last aspect to consider when choosing scenes and scripts is execution speed. As the size of objects increases, the scripts' necessary size to create and initialize them grows much larger. Creating node hierarchies demonstrates this. Each Node's logic could be several hundred lines of code in length. The code example below creates a new ``Node``, changes its name, assigns a script to it, sets its future parent as its owner so it gets saved to disk along with it, and finally adds it as a child of the ``Main`` node: .. tabs:: .. code-tab:: gdscript GDScript # main.gd extends Node func _init(): var child = Node.new() child.name = "Child" child.script = preload("child.gd") add_child(child) child.owner = self .. code-tab:: csharp using Godot; public partial class Main : Node { public Node Child { get; set; } public Main() { Child = new Node(); Child.Name = "Child"; var childID = Child.GetInstanceId(); Child.SetScript(GD.Load