---------------------------------------------------------------------------
-- Vdo_spinner
--
-- Spinning image to use when a 3D asset is not loaded yet.
---------------------------------------------------------------------------
-- Inherited from Vdo_base_object
Vdo_spinner = Vdo_base_object:new_base()
function vdo_spinner_init()
end
function vdo_spinner_cleanup()
end
function Vdo_spinner:init()
self.spinner_anim_h = vint_object_find("spinner_anim", self.handle)
vint_set_property(self.spinner_anim_h, "target_handle", self.handle)
lua_play_anim(self.spinner_anim_h, 0)
end