From Unity to Godot Engine

    Note

    This article talks about older versions of Unity. Nestable prefabs (‘Nested prefabs’) were added to Unity 2018.3. Nestable prefabs are analogous to Godot’s scenes, and allow a more Godot-like approach to scene organisation.

    The editor

    Godot Engine provides a rich-featured editor that allows you to build your games. The pictures below display the default layouts of both editors with colored blocks to indicate common functionalities.

    ../../_images/godot-gui-overlay.png

    While both editors may seem similar, there are many differences below the surface. Both let you organize the project using the filesystem, but Godot’s approach is simpler with a single configuration file, minimalist text format, and no metadata. This makes Godot more friendly to VCS systems, such as Git, Subversion, or Mercurial.

    Godot’s Scene panel is similar to Unity’s Hierarchy panel but, as each node has a specific function, the approach used by Godot is more visually descriptive. It’s easier to understand what a scene does at a glance.

    The Inspector in Godot is more minimal, it shows only properties. Thanks to this, objects can expose more useful parameters to the user without having to hide functionality in language APIs. As a plus, Godot allows animating any of those properties visually. Changing colors, textures, enumerations, or even links to resources in real-time is possible without needing to write code.

    The Toolbar at the top of the screen is similar in both editors, offering control over project playback. Projects in Godot run in a separate window, rather than inside the editor (but the tree and objects can still be explored in the debugger window).

    This approach has the disadvantage that in Godot the running game can’t be explored from different angles (though this may be supported in the future and displaying collision gizmos in the running game is already possible), but in exchange has several advantages:

    • Running the project and closing it is fast (Unity has to save, run the project, close the project, and then reload the previous state).
    • The editor is more stable because the game runs in a separate process.

    Finally, Godot’s top toolbar includes a menu for remote debugging. These options allow deployment to a device (connected phone, tablet, or browser via HTML5), and debugging/live editing on it after the game is exported.

    This is the most important difference between Unity and Godot and the favourite feature of most Godot users.

    Working on a ‘level’ in Unity usually means embedding all the required assets in a scene and linking them together with components and scripts.

    Godot’s scene system is superficially similar to Unity. A ‘level’ consists of a collection of nodes, each with its own purpose: Sprite, Mesh, Light, etc. However, in Godot the nodes are arranged in a tree. Each node can have multiple children, which makes each a subscene of the main scene. This means you can compose a whole scene with different scenes stored in different files.

    • Bricks
    • Coins
    • The player
    • The enemies

    In Unity, you would put all the GameObjects in the scene: the player, multiple instances of enemies, bricks everywhere to form the ground of the level and then multiple instances of coins all over the level. You would then add various components to each element to link them and add logic in the level: For example, you’d add a BoxCollider2D to all the elements of the scene so that they can collide. This principle is different in Godot.

    In Godot, you would split your whole scene into three separate, smaller scenes, and instance them in the main scene.

    1. A scene for the Player alone.

    Consider the player as an element we’d like to use in different parent scenes (for instance ‘level’ scenes). In our case, the player element needs at least an AnimatedSprite node. This node contains the sprite textures necessary for various animations (for example, a walking animation).

    1. A scene for the Enemy.

    An enemy is also an element we’d like to use in several scenes. It’s almost the same as the Player node. The only differences are the script (it needs ‘AI’ routines to generate the enemy’s behaviour) and the sprite textures used by the AnimatedSprite node.

    1. A Level scene.

    A Level scene is composed of Bricks (for platforms), Coins (for the player to collect) and a number of instances of the Enemy scene. Each instance is a node in the Level scene tree. These instances are separate enemies, which initially have shared behaviour and appearance as defined in the Enemy scene. You can set different properties for each Enemy node (to change its color, for example).

    4. A Main scene. The Main scene would be composed of one root node with 2 children: a Player instance node, and a Level instance node. The root node can be anything, generally a “root” type such as “Node” which is the most global type, or “Node2D” (root type of all 2D-related nodes), “Spatial” (root type of all 3D-related nodes) or “Control” (root type of all GUI-related nodes).

    As you can see, every scene is organized as a tree. The same goes for nodes’ properties: you don’t add a collision component to a node to make it collidable like Unity does. Instead, you make this node a child of a new specific node that has collision properties. Godot features various collision types nodes, depending on the usage (see the ).

    • What are the advantages of this system? Wouldn’t this system potentially increase the depth of the scene tree? And doesn’t Unity already allow you to organize GameObjects by putting them inside empty GameObjects?

    Project organization

    There is no perfect project architecture. Any architecture can be made to work in either Unity and Godot.

    However, a common architecture for Unity projects is to have one Assets folder in the root directory that contains various folders, one per type of asset: Audio, Graphics, Models, Materials, Scripts, Scenes, and so on.

    Since Godot allows splitting scenes into smaller scenes, each scene and subscene existing as a file in the project, we recommend organizing your project a bit differently. This wiki provides a page for this: Project organization.

    A prefab as provided by Unity is a ‘template’ element of the scene. It is reusable, and each instance of the prefab that exists in the scene has an existence of its own, but all of them have the same properties as defined by the prefab.

    ../../_images/save-branch-as-scene.png

    To be precise, you can modify the parameters of an instance in the Inspector panel. The nodes that compose this instance are initially locked. You can unlock them if you need to by right-clicking the instance in the Scene tree and selecting “Editable children” in the menu. You don’t need to do this to add new child nodes to this node. Remember that any new children will belong to the instance, not to the ‘template’ scene on disk. If you want to add new children to every instance of your ‘template’ scene, then you should add them in the ‘template’ scene.

    Glossary correspondence

    • GameObject -> Node
    • Add a component -> Inheriting
    • Prefab -> Reusable Scene file

    Unity supports C#. C# benefits from its integration with Visual Studio and has desirable features such as static typing.

    Godot provides its own scripting language, as well as support for Visual Script and . GDScript borrows its syntax from Python, but is not related to it. If you wonder about the reasoning for a custom scripting language, please read the GDScript basics and pages. GDScript is strongly attached to the Godot API and doesn’t take long to learn: Between one evening for an experienced programmer and a week for a complete beginner.

    Unity allows you to attach as many scripts as you want to a GameObject. Each script adds a behaviour to the GameObject: For example, you can attach a script so that it reacts to the player’s controls, and another that controls its specific game logic.

    In Godot, you can only attach one script per node. You can use either an external GDScript file or include the script directly in the node. If you need to attach more scripts to one node, then you may consider two solutions, depending on your scene and on what you want to achieve:

    • either add a new node between your target node and its current parent, then add a script to this new node.
    • or, you can split your target node into multiple children and attach one script to each of them.

    As you can see, it can be easy to turn a scene tree to a mess. Consider splitting any complicated scene into multiple, smaller branches.

    You can control nodes by accessing them via script and calling built-in or user-defined functions on them. You can also place nodes in a group and call functions on all nodes in this group. See more in the scripting documentation.

    Nodes can send a signal when a specified action occurs. A signal can be set to call any function. You can define custom signals and specify when they are triggered. See more in the .

    Unity can handle script serialization in two ways:

    • Explicit: Non-public fields can be serialized using the attribute.

    Godot also has a built-in script serialization system, but it works only explicitly. You can serialize any serializable type (built-in and various engine types, including and Dictionary) using the keyword. See the for details.

    Unity also has a data type called used to serialize custom asset objects. Its equivalent in Godot is the base class for all resources: Resource. Creating a script that inherits will allow you to create custom serializable objects. More information about resources can be found here.

    Using Godot in C++

    If you are interested in using Godot in C++, you may want to start reading the page.