diff options
author | HampusM <hampus@hampusmat.com> | 2023-10-25 20:56:01 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-10-25 20:56:01 +0200 |
commit | 0c0dc186b542bf6bdd7645ba091dc2a47a03fa97 (patch) | |
tree | a656e64e1dfcae37b518c50aab99fdafb99a8e0f /engine/src/transform.rs | |
parent | 47798568f3f05b8267ae3700369a4a396073ef97 (diff) |
feat(engine): add object position getter
Diffstat (limited to 'engine/src/transform.rs')
-rw-r--r-- | engine/src/transform.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engine/src/transform.rs b/engine/src/transform.rs index 9ce52ee..c216fdd 100644 --- a/engine/src/transform.rs +++ b/engine/src/transform.rs @@ -22,6 +22,11 @@ impl Transform } } + pub fn translation(&self) -> &Vec3<f32> + { + &self.translation + } + pub fn set_translation(&mut self, translation: Vec3<f32>) { self.translation = translation; |