function update() -- 軸入力を取得する。 local axis = vci.me.GetAxisInput() if axis.x ~= 0 then print(" X : "..tostring(axis.x)) end if axis.y ~= 0 then print(" Y : "..tostring(axis.y)) end if axis.z ~= 0 then print(" Z : "..tostring(axis.z)) end if vci.me.GetButtonInput(1) then print(" Button1 が押されました。") end if vci.me.GetButtonInput(2) then print(" Button2 が押されました。") end if vci.me.GetButtonInput(3) then print(" Button3 が押されました。") end if vci.me.GetButtonInput(4) then print(" Button4 が押されました。") end end