group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
JumpPad.hpp
Go to the documentation of this file.
1
3
4#pragma once
5
6#include <glm/vec3.hpp>
7
16struct JumpPad
17{
21 glm::vec3 velocity{0.0f, 1500.0f, 0.0f};
22};
ECS component: world jump pad that imparts an instantaneous velocity to any player whose AABB overlap...
Definition JumpPad.hpp:17
glm::vec3 velocity
Velocity (units/s) applied to the player on entry.
Definition JumpPad.hpp:21