I created a multifile containing all the egg and texture files associated with one of my models, but the texture isn’t loading. The model and animations load though. Any ideas how to get it working?
#Setup VFS
vfs = VirtualFileSystem.get_global_ptr()
vfs.mount("./Pyramid.fluff", "/data", VirtualFileSystem.MF_read_only,
"cat")
get_model_path().append_directory("/data")
#Load the model
self.actor = Actor("/data/Pyramid/Pyramid",
{
"Wiggle": "/data/Pyramid/Pyramid-Wiggle"
})
self.actor.set_scale(1, 1, 1)
self.actor.reparent_to(render)
self.actor.loop("Wiggle")