CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
JoltPhysicsSystem.hpp
Go to the documentation of this file.
1//
2// CeresEngine - A game development framework
3//
4// Created by Rogiel Sulzbach.
5// Copyright (c) 2018-2022 Rogiel Sulzbach. All rights reserved.
6//
7
8#pragma once
9
11
13
14namespace CeresEngine {
15
58
59} // namespace CeresEngine
The base entity class.
Definition Entity.hpp:41
Definition JoltPhysicsSystem.hpp:16
void update(double time) final
Updates the system.
void act(Entity &entity, const ApplyForce &action) final
~JoltPhysicsSystem() noexcept final
UPtr< Pimpl > m
Definition JoltPhysicsSystem.hpp:19
void didRemove(const PhysicsWorld &world) noexcept final
A notification dispatched by the SystemManager to a system.
void didAdd(const PhysicsWorld &world) noexcept final
A notification dispatched by the SystemManager to a system.
Definition PhysicsSystem.hpp:26
Definition World.hpp:60
A rigid body is a body that can be collided with and can be moved.
Definition Body.hpp:233
A soft body is a body that can have deformations.
Definition Body.hpp:239
A static body is a body that can be collided with, but cannot be moved.
Definition Body.hpp:227
Definition Application.hpp:19
std::unique_ptr< T, Deleter > UPtr
UPtr is a smart pointer that owns and manages another object through a pointer and disposes of that o...
Definition SmartPtr.hpp:28
constexpr size_t hash(const T &v)
Generates a hash for the provided type.
Definition Hash.hpp:25
Definition Body.hpp:211