2D Ultimate Side Scroller Character Controller
  • Introduction
    • Purpose
    • Overview
  • 🛠️Setup
    • Quick Setup
    • Detailed Setup
  • Content
    • Utilities
      • Custom Attributes
      • Extensions
    • Input System
    • Physics
    • Layers
    • Player Data
      • Physics Variables
      • Walk Variables
      • Crouch Variables
      • Jump Variables
      • Land Variables
      • Dash Variables
      • Wall Movement Variables
  • ⛑️Help
    • FAQ
    • Adding States
    • Removing States
  • Development
    • Features - V1.0
    • Roadmap
  • 📪Contact Me
    • Contact Me
Powered by GitBook
On this page
  1. Content
  2. Player Data

Physics Variables

PreviousPlayer DataNextWalk Variables

Last updated 2 years ago

In the PlayerData class, the PhysicsVariables class is created to store variables related to the player's physics and interactions with the environment. This class includes variables for slopes, platforms, ground checking, head bump checking, wall interactions, and more.

The PhysicsVariables class has two nested classes, SlopeVariables and PlatformVariables, that store data related to slopes and platforms, respectively.