mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-26 01:24:19 +00:00
9 lines
294 B
GDScript
9 lines
294 B
GDScript
extends Node
|
|
class_name GravityFromGyro
|
|
|
|
|
|
func _physics_process(_delta):
|
|
var accel_3d = Input.get_accelerometer()
|
|
var accel_2d = Vector2(accel_3d.x, -accel_3d.y) / 9.8
|
|
PhysicsServer2D.area_set_param(get_viewport().find_world_2d().space, PhysicsServer2D.AREA_PARAM_GRAVITY_VECTOR, accel_2d)
|
|
|