mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
disambiguated StateData.notify calls
This commit is contained in:
parent
babe3283bd
commit
befcfc7f23
@ -33,7 +33,7 @@ class StateData(DirectObject):
|
||||
|
||||
self.load()
|
||||
self.isEntered = 1
|
||||
self.notify.debug('enter()')
|
||||
StateData.notify.debug('enter()')
|
||||
return 1
|
||||
|
||||
def exit(self):
|
||||
@ -46,7 +46,7 @@ class StateData(DirectObject):
|
||||
if not self.isEntered:
|
||||
return 0
|
||||
self.isEntered = 0
|
||||
self.notify.debug('exit()')
|
||||
StateData.notify.debug('exit()')
|
||||
return 1
|
||||
|
||||
def load(self):
|
||||
@ -63,7 +63,7 @@ class StateData(DirectObject):
|
||||
return 0
|
||||
|
||||
self.isLoaded = 1
|
||||
self.notify.debug('load()')
|
||||
StateData.notify.debug('load()')
|
||||
return 1
|
||||
|
||||
def unload(self):
|
||||
@ -81,7 +81,7 @@ class StateData(DirectObject):
|
||||
|
||||
self.exit()
|
||||
self.isLoaded = 0
|
||||
self.notify.debug('unload()')
|
||||
StateData.notify.debug('unload()')
|
||||
return 1
|
||||
|
||||
def getDoneStatus(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user