소스 검색

Controller model example animates models;

bjorn 1 년 전
부모
커밋
c96764dbf8
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      examples/Interaction/Controller_Models/main.lua

+ 1 - 0
examples/Interaction/Controller_Models/main.lua

@@ -8,6 +8,7 @@ end
 function lovr.draw(pass)
   for hand, model in pairs(models) do
     if lovr.headset.isTracked(hand) then
+      lovr.headset.animate(model)
       pass:draw(model, mat4(lovr.headset.getPose(hand)))
     end
   end