mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 09:23:03 -04:00
added startTk flags
This commit is contained in:
parent
be718ced33
commit
b42bde4b2e
@ -900,14 +900,12 @@
|
|||||||
|
|
||||||
|
|
||||||
def place(self):
|
def place(self):
|
||||||
base.startTk()
|
base.startDirect(fWantTk = 1)
|
||||||
base.startDirect()
|
|
||||||
import Placer
|
import Placer
|
||||||
return Placer.place(self)
|
return Placer.place(self)
|
||||||
|
|
||||||
def explore(self):
|
def explore(self):
|
||||||
base.startTk()
|
base.startDirect(fWantTk = 1)
|
||||||
base.startDirect()
|
|
||||||
import SceneGraphExplorer
|
import SceneGraphExplorer
|
||||||
return SceneGraphExplorer.explore(self)
|
return SceneGraphExplorer.explore(self)
|
||||||
|
|
||||||
@ -917,11 +915,11 @@
|
|||||||
return Slider.rgbPanel(self, cb)
|
return Slider.rgbPanel(self, cb)
|
||||||
|
|
||||||
def select(self):
|
def select(self):
|
||||||
base.startDirect()
|
base.startDirect(fWantTk = 0)
|
||||||
direct.select(self)
|
direct.select(self)
|
||||||
|
|
||||||
def deselect(self):
|
def deselect(self):
|
||||||
base.startDirect()
|
base.startDirect(fWantTk = 0)
|
||||||
direct.deselect(self)
|
direct.deselect(self)
|
||||||
|
|
||||||
def showCS(self, mask = None):
|
def showCS(self, mask = None):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user