Object

From Fancade Wiki
Revision as of 10:57, 27 July 2025 by Vizronix (talk | contribs) (Created page with " An '''Object''' in Fancade is a basic interactive element used when building games. Objects can represent characters, vehicles, buttons, hazards, or any custom elements you design. thumb|250px|right|An example object in Fancade == Overview == Objects are placed in levels to create gameplay elements. They can move, collide, detect events, or trigger actions via scripting. Each object has: * A **Model**: the visual representation built with vox...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

An Object in Fancade is a basic interactive element used when building games. Objects can represent characters, vehicles, buttons, hazards, or any custom elements you design.

An example object in Fancade

Overview

Objects are placed in levels to create gameplay elements. They can move, collide, detect events, or trigger actions via scripting.

Each object has:

  • A **Model**: the visual representation built with voxels.
  • A **Script**: defines behavior such as movement, interaction, and response.
  • **Properties**: Such as visibility, collision type, etc.

Creating an Object

To create a new object: Use an existing object and edit it to create a new one.

Usage

Objects are used for:

  • **Player characters** (e.g., cars, robots)
  • **Enemies**
  • **Switches**, **doors**, or **moving platforms**
  • **Collectibles**, **hazards**, or **traps**

Related