😍
Mutate tutorials and guides
  • 💜Welcome to Mutate!
  • Guides
    • 🏁How to get started using Mutate
    • 🗺️Basic Navigation in Mutate
    • 📥Importing assets into Mutate
    • 🧠Creating game logic in Mutate
      • ✨Spawning
      • 💀Re-Spawning
      • ⚙️Platforms
      • 🏆Collectibles
      • 👀Item Visibility
      • 🔂Item Respawn
    • 🏃‍♀️Obstacle course tutorial
  • Tools
    • ✊Grab Manipulator
    • 🛠️Transform Manipulator
      • ↔️Move
      • 🔄Rotate
      • ↗️Scale
      • 🌐Global/Local
    • ⛓️Linking
      • 💥Components, Actions & Events
      • 📦Entity Components
      • 🙋Player Components
      • 🎮Game Components
      • 🌍Environment Components
  • Content Browsers
    • 📒Asset Browser
    • 🎨Material Browser
  • COMPONENT TUTORIALS
    • 🔍Components - a closer look
      • Entity Components
        • ↕️Mover
          • Elevators
        • 🔃Rotator
        • 🎯Collider
        • 🚧Collision Toggler
        • 👈Interact
        • 🕶️Hider
        • ⏰Timer
        • 💡Light Source
        • 🐣Spawn Point
        • ⚠️Trigger Zone
        • 🧚‍♀️Force Zone
        • 🔓Exclusive Zone
        • 📸Post-Process Zone
        • 🎧Sound
        • 🎲Die Roller
        • 💣Destruction
        • 🔫Shootable
        • 💬Broadcaster
Powered by GitBook
On this page
  1. COMPONENT TUTORIALS
  2. Components - a closer look
  3. Entity Components

Collider

is an Entity Component

PreviousRotatorNextCollision Toggler

Last updated 3 years ago

Collider works by tracking whether or not anything is currently touching the object. It can track both players and other entities.

Collider is a super diverse component, but very easy to use. It's one that will create links that operate 'behind the scenes' to create logic, and is less visually obvious than, say, Mover or Rotator.

It is different to .

  • Enabled - dictates whether or not the object is tracking for contact/collision

  • Trigger on every instance - dictates whether or not it tracks every single time it is touched, or just once

  • Detect Players - dictates whether or not it will respond to being touched by a player

  • Detect Voxels - dictates whether or not it will respond to being touched by another entity

Common uses

  • Activator for events - when a player touches the object, a door can open; when they stop touching it, a wall explodes, etc. etc.

  • Destruction - when two entities collide, they blow up on contact

🔍
🎯
Collision Toggler