mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Update Attractor.h
This commit is contained in:
parent
5d3921b24d
commit
e48fab19da
1 changed files with 6 additions and 5 deletions
|
@ -44,12 +44,13 @@ namespace TEN::Collision::Attractor
|
|||
class AttractorObject
|
||||
{
|
||||
private:
|
||||
// Members
|
||||
// Fields
|
||||
|
||||
AttractorType _type = AttractorType::Edge;
|
||||
Vector3 _position = Vector3::Zero;
|
||||
int _roomNumber = 0;
|
||||
Quaternion _orientation = Quaternion::Identity;
|
||||
|
||||
AttractorType _type = AttractorType::Edge;
|
||||
Vector3 _position = Vector3::Zero;
|
||||
int _roomNumber = 0;
|
||||
Quaternion _orientation = Quaternion::Identity;
|
||||
std::vector<Vector3> _points = {};
|
||||
std::vector<float> _segmentLengths = {};
|
||||
float _length = 0.0f;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue