Sfoglia il codice sorgente

:wrench: Block player movement when on board

DricomDragon 1 anno fa
parent
commit
eb27d0db50

+ 11 - 0
first3d/component/entity/walker/walker.gd

@@ -37,6 +37,13 @@ func is_onboard() -> bool:
 
 
 func _physics_process(delta: float) -> void:
+	if is_onboard():
+		_get_on_driver_seat()
+	else:
+		_move_with_feet(delta)
+
+
+func _move_with_feet(delta: float):
 	rotate_y(target_rotation)
 
 	# Gravity
@@ -48,6 +55,10 @@ func _physics_process(delta: float) -> void:
 	move_and_slide()
 
 
+func _get_on_driver_seat() -> void:
+	pass # Not implemented yet
+
+
 func _on_dir_changed(dir: Vector2) -> void:
 	trigger_direction(dir)
 

+ 1 - 1
first3d/run/levels/infinite_level.tscn

@@ -54,7 +54,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.53697, 1.42774, -11.1883)
 transform = Transform3D(0.477312, 0.527326, -0.702923, -0.741391, 0.671074, 0, 0.471713, 0.521141, 0.711266, -76.6685, 15.7672, 53.8067)
 
 [node name="TinyPlane2" parent="." instance=ExtResource("4_tbpfc")]
-transform = Transform3D(0.477312, 0.527326, -0.702923, -0.741391, 0.671074, 0, 0.471713, 0.521141, 0.711266, -7.92225, 3.94108, -6.48481)
+transform = Transform3D(-0.589079, -0.650805, -0.478999, -0.741391, 0.671074, 1.34747e-08, 0.321443, 0.355125, -0.877816, -10.5959, 3.94108, -6.48481)
 
 [connection signal="dir_changed" from="MainWalker/Control" to="MainWalker" method="_on_dir_changed"]
 [connection signal="get_in_action" from="MainWalker/Control" to="MainWalker" method="_on_get_in_action"]