瀏覽代碼

:wrench: Make the player stand up when exiting vehicle

DricomDragon 1 年之前
父節點
當前提交
4ce98966b3
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      first3d/component/entity/walker/walker.gd

+ 6 - 1
first3d/component/entity/walker/walker.gd

@@ -96,7 +96,12 @@ func _get_out_vehicle() -> void:
 	remove_collision_exception_with(_vehicle)
 	reparent(_vehicle.get_parent())
 	_vehicle = null
-	# Not implemented yet
+	_get_head_up()
+
+
+## Make the player stand up
+func _get_head_up():
+	set_rotation(Vector3(0.0, rotation.y, 0.0))
 
 
 ## Return closest vehicle within reach