Ver Fonte

Print message when no models are loaded;

unknown há 3 anos atrás
pai
commit
3fd8d56293
1 ficheiros alterados com 2 adições e 0 exclusões
  1. 2 0
      examples/Interaction/Controller_Models/main.lua

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

@@ -3,6 +3,8 @@ function lovr.load()
     left = lovr.headset.newModel('hand/left'),
     right = lovr.headset.newModel('hand/right')
   }
+
+  if not next(models) then print('No models loaded') end
 end
 
 function lovr.draw()