diff options
| author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-13 20:42:44 +0100 | 
|---|---|---|
| committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-13 20:42:44 +0100 | 
| commit | fea0c2f0f96e093962c5faf3643176e856b1e8f6 (patch) | |
| tree | e2549acde74cb52d35fd9ff75a3c21b986c76fcf /src/example | |
| parent | d5904cb53bb7cc3a33894cb30746433b724f5634 (diff) | |
make format
Diffstat (limited to 'src/example')
| -rw-r--r-- | src/example/game.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/example/game.cpp b/src/example/game.cpp index af87647..dd5b968 100644 --- a/src/example/game.cpp +++ b/src/example/game.cpp @@ -30,22 +30,22 @@ class MyScript1 : public Script {  		switch (test.key) {  			case Keycode::A: {  				Rigidbody & tf = this->get_component<Rigidbody>(); -				tf.data.linear_velocity.x -= 1 ; +				tf.data.linear_velocity.x -= 1;  				break;  			}  			case Keycode::W: {  				Rigidbody & tf = this->get_component<Rigidbody>(); -				tf.data.linear_velocity.y -= 1 ; +				tf.data.linear_velocity.y -= 1;  				break;  			}  			case Keycode::S: {  				Rigidbody & tf = this->get_component<Rigidbody>(); -				tf.data.linear_velocity.y += 1 ; +				tf.data.linear_velocity.y += 1;  				break;  			}  			case Keycode::D: {  				Rigidbody & tf = this->get_component<Rigidbody>(); -				tf.data.linear_velocity.x += 1 ; +				tf.data.linear_velocity.x += 1;  				break;  			}  			case Keycode::E: { @@ -81,8 +81,8 @@ class MyScript1 : public Script {  	}  	void update() {  		Rigidbody & tf = this->get_component<Rigidbody>(); -		Log::logf("linear_velocity.x {}",tf.data.linear_velocity.x); -		Log::logf("linear_velocity.y {}",tf.data.linear_velocity.y); +		Log::logf("linear_velocity.x {}", tf.data.linear_velocity.x); +		Log::logf("linear_velocity.y {}", tf.data.linear_velocity.y);  		// tf.data.linear_velocity = {0,0};  	}  }; |