Can I create my own actor?

Can I create my own actor?
I mean actors like CharacterController, Rigidbody, Colliders.
I actually want to create a spaceship actor :sweat_smile:
Just want to know if there is a way, so that, my game assets would be modular.

You can create scripts and attach them to objects on scene or prefab. You can also inherit from Actor type and implement custom Actor logic inside it. Follow docs to learn more about scripting.

1 Like