Skip to content

Character controller with manual collision resolve for Unity

License

Notifications You must be signed in to change notification settings

aleksandrpp/CompetitiveController

Repository files navigation

Competitive Controller

A good starting point for creating your own competitive character controller in Unity is needed primarily for online games, where you cannot rely on the rigidbody, and the PhysX character controller hides too much logic.

You can see example here

---
title: Move loop
---
flowchart LR
    A[Trace ground] --> B{Grounded}
    B -- Yes --> C[Set horizontal velocity]
    B -- No --> F[Reduce velocity]
    C --> D{Jump pressed}
    D -- Yes --> E[Add vertical velocity]
    D -- No --> G
    E --> G
    F --> G[Resolve collisions]
    G --> H[Add Gravity]
Loading

v1.1.0

https://github.com/aleksandrpp/CompetitiveController

About

Character controller with manual collision resolve for Unity

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages