Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Physics

Built-in concrete 3D Physics System, implementing movement for Entities in 3D Games

To be eligible for movement, an Entity must have a Transform Component

Hierarchy

Index

Constructors

Properties

Methods

Constructors

  • Constructor. Provide the name 'Physics' to the parent class

    Returns Physics

Properties

name: string

Methods

  • tick(game: Game, frameDelta: number): void
  • Concrete update method, implementing per-frame movement functionality for eligible Entities

    Parameters

    • game: Game

      the 3D Game the System is operating within

    • frameDelta: number

      the frame delta as calculated by the Game

    Returns void