mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
added to support level spec data transmission during interactive editing
This commit is contained in:
parent
84cef33abe
commit
276ab8bfb9
9
direct/src/extensions/VBase3-extensions.py
Executable file
9
direct/src/extensions/VBase3-extensions.py
Executable file
@ -0,0 +1,9 @@
|
||||
|
||||
"""
|
||||
VBase3-extensions module: contains methods to extend functionality
|
||||
of the VBase3 class
|
||||
"""
|
||||
|
||||
def __repr__(self):
|
||||
return '%s(%s,%s,%s)' % (
|
||||
self.__class__.__name__,self[0],self[1],self[2])
|
9
direct/src/extensions/VBase4-extensions.py
Executable file
9
direct/src/extensions/VBase4-extensions.py
Executable file
@ -0,0 +1,9 @@
|
||||
|
||||
"""
|
||||
VBase4-extensions module: contains methods to extend functionality
|
||||
of the VBase4 class
|
||||
"""
|
||||
|
||||
def __repr__(self):
|
||||
return '%s(%s,%s,%s)' % (
|
||||
self.__class__.__name__,self[0],self[1],self[2],self[3])
|
Loading…
x
Reference in New Issue
Block a user