Files
evol-assets/scripts/MainScene/CameraHelper.lua
T
mo7sen eb27ae4c24 Minor Changes
Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
2021-06-26 21:23:13 +02:00

18 lines
523 B
Lua
Executable File

this.on_init = function()
this.angles = Vec3:new()
this.mouse_sens = 0.01
end
this.on_update = function()
local deltaMouseMovement = Input.getDeltaMousePos()
this.angles.x = this.angles.x - deltaMouseMovement.y * this.mouse_sens
this.eulerAngles = this.angles
if Input.getKeyJustPressed(Input.KeyCode.O) then
box = loadPrefab("prefabs://BrainStem.pf")
box.position = this.worldPosition + (this.forward * 2)
boxBody = box:getComponent(Rigidbody)
boxBody:addForce(this.forward * 3000)
end
end