First Attempt Questions

Hello so to start simple we decided to make a bar scene that you can walk around in. However I have the grey box coming up and I load my environment into it which is just a plane with a wood floor texture on it. However I can’t see my plane, I just see grey. What am I dong wrong?

Here is the blender file:
yourfilehost.com/media.php?c … ment.blend

Here is the egg:
yourfilehost.com/media.php?c … ent.egg.pz

Here is my code:

import direct.directbase.DirectStart

from direct.showbase.DirectObject import DirectObject

class Bar(DirectObject):
    
    def __init__(self):
        
        loadModules()

    def loadModules(self):
        self.environ = loader.loadModels("models/environment")
        self.environ.renderTo(render)

run()

changed:

self.environ.renderTo(render)

To:

self.environ.reparentTo(render)

I still don't see it.

[/quote]

Just realized how dumb I was being…

Sorry its been a long day…

nomb