librocket GUI support

Well, this page http://www.panda3d.org/download.php?sdk states that 1.8.0 is likely to be unstable, so I choose for 1.7.2, just to be safe (Again, I’m new, so :slight_smile: )

But if 1.8.0 includes librocket, and it is not unstable, I will download that right away :wink:

Thanks for your help Nemesis!

Edit: I downloaded and installed 1.8.0 (1.8.0-1~oneiric3 to be precise), and when I try to execute this testscript:

from direct.showbase.ShowBase import ShowBase

print "Imported ShowBase."

import rocket

print "Imported rocket."

from panda3d.rocket import RocketRegion, RocketInputHandler

print "Imported panda3d.rocket."


class MyApp(ShowBase):
    def __init__(self):
        ShowBase.__init__(self)

        print "ShowBase init finished."

        r = RocketRegion.make('pandaRocket', self.win)
        r.setActive(1)

        print "RocketRegion created."

        ih = RocketInputHandler()
        self.mouseWatcher.attachNewNode(ih)
        r.setInputHandler(ih)

        print "RocketInputHandler created."

        context = r.getContext()

        print "Got rocket context."


app = MyApp()
app.run() 

It gives this ouput:

But rocket is included in Panda, so I don’t know what to do, install it by myself?