Godot访问手机传感器

Aug 16, 2022 14:13 · 53 words · 1 minute read Godot 游戏 编程

超级简单!

官方文档地址

#加速度
var a= Input.get_accelerometer()
#陀螺仪
var b= Input.get_gyroscope()
#磁场
var c= Input.get_magnetometer()
#重力
var d= Input.get_gravity()

返回值都是矢量数组(x,y,z)


分享   tweet   Share   微博