Unity Developer Guide
Last updated
Last updated
OVERDARE is a powerful game creation platform that handles everything from multiplayer game development to deployment. Unlike Unity which is client-based, OVERDARE is designed for multiplayer environments, resulting in a different structure than Unity.
This document is designed to help Unity developers quickly adapt to OVERDARE Studio. Explore new possibilities for creating multiplayer games with OVERDARE!
Game
X
Scene
Viewport
Hierarchy
Level Browser
Inspector
Properties
Project
X
Console
Output Log
Unlike Unity, OVERDARE Studio does not provide a Game View or Project panel. Instead, when you run the game, the Viewport panel switches to the play screen.
In Unity, all assets such as scripts, materials, and meshes are managed in the Project panel. In OVERDARE Studio, scripts are managed in the Level Browser, while externally imported assets like meshes, images, and audio are managed separately through the Asset Manager.
Q
Ctrl + 1
Select Tool
W
Ctrl + 2
Move Tool
E
Ctrl + 3
Rotate Tool
R
Ctrl + 4
Scale Tool
Ctrl + P
F5
Play
Ctrl + P
Shift + F5
Stop
In client-based Unity, external assets can be easily imported via drag-and-drop. On the other hand, OVERDARE Studio is designed as a platform for creators, requiring a server upload process when using external assets. This allows creators to easily share assets and use them in game development.
To import external assets, click the Import button in the top menu of OVERDARE Studio. When an asset is imported, it is uploaded to the server, and once processing is complete, it appears in the Asset Drawer.
In Unity, core functionalities are component-based, allowing you to freely combine components like cameras, colliders, and audio to define an object’s behavior. In contrast, OVERDARE Studio has fixed object types for specific functionalities.
For example, in Unity, you need to add a Rigidbody component to enable physics for an object. In OVERDARE Studio, you need to disable the Anchored property in a Part object that has built-in physics functionality.
OVERDARE Studio uses Lua script as its scripting language for game development. Lua is a lightweight scripting language known for its easy-to-learn syntax, fast execution speed, and high flexibility. These characteristics make Lua more accessible and productive than C# scripting, allowing both beginners and experienced developers to use it effectively.
Explicit data types
O
X
Access modifiers
private, public, static 등
local, global
Object-Oriented programming (OOP)
Supports OOP through classes, interfaces, inheritance, polymorphism, etc.
Does not natively support OOP but allows similar implementations using Metatables
Code Structure
Class-based; all code is written inside classes, utilizing methods and properties
Simple function-based structure; no classes, uses Tables to organize data and functions
Functions
Functions are class members
Functions can be used as variables (First-class functions)
Collection
List, Dictionary, etc.
Table
Switch Statement
O
X
Single-line Comment
//
--
Multi-line Comment
/* and */
--[[ and ]]--
Semicolons
Required
Optional
Learn More
Lua scripts are dynamically typed, and the script is executed sequentially from top to bottom. Forward referencing is not supported, meaning any functions or variables must be defined before they are referenced. This design characteristic stems from Lua’s focus on simplicity and runtime performance.
If variables or functions are declared as global, they can be accessed from anywhere. However, since global variables can be modified from anywhere, this can reduce code stability.
To avoid the risks of global variables, you can use module scripts to encapsulate variables and functions within a table and return them. This approach is safer than using global variables and helps structure your code.
Alternatively, you can use BindableEvent to handle communication between scripts in the same environment, such as server-to-server or client-to-client.
Learn More
Since OVERDARE is designed for multiplayer environments, the purpose and execution of scripts depend on their location. For example, client-only features like cameras or GUIs run only on the client, whereas game logic or object movements requiring synchronization must be handled on the server. This structure clearly separates the roles of the client and server, ensuring efficient and stable multiplayer behavior.
In Unity, script execution order can be explicitly set using the Script Execution Order settings. In OVERDARE Studio, the execution order is automatically determined based on the type of script (e.g., Script or LocalScript) and its execution location (e.g., Workspace, ServerScriptService).
Learn More
OVERDARE is designed for multiplayer games, where the game is implemented using a combination of Script (executed on the server) and LocalScript (executed on the client). Communication between the server and client is handled using RemoteEvent.
Learn More
To learn more about the scripting features provided by OVERDARE Studio, refer to the documentation below.