mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
direct: add MetaInterval underscore aliases (fixes override bug)
These methods are supposed to override the underlying C methods, which do have underscore aliases, so it is important that the Python class defines these underscore aliases as well.
This commit is contained in:
parent
6cd59807dd
commit
57578ee58f
@ -573,7 +573,23 @@ class MetaInterval(CMetaInterval):
|
|||||||
out = ostream
|
out = ostream
|
||||||
CMetaInterval.timeline(self, out)
|
CMetaInterval.timeline(self, out)
|
||||||
|
|
||||||
|
add_sequence = addSequence
|
||||||
|
add_parallel = addParallel
|
||||||
|
add_parallel_end_together = addParallelEndTogether
|
||||||
|
add_track = addTrack
|
||||||
|
add_interval = addInterval
|
||||||
|
set_manager = setManager
|
||||||
|
get_manager = getManager
|
||||||
|
set_t = setT
|
||||||
|
resume_until = resumeUntil
|
||||||
|
clear_to_initial = clearToInitial
|
||||||
|
clear_intervals = clearIntervals
|
||||||
|
set_play_rate = setPlayRate
|
||||||
|
priv_do_event = privDoEvent
|
||||||
|
priv_post_event = privPostEvent
|
||||||
|
set_interval_start_time = setIntervalStartTime
|
||||||
|
get_interval_start_time = getIntervalStartTime
|
||||||
|
get_duration = getDuration
|
||||||
|
|
||||||
|
|
||||||
class Sequence(MetaInterval):
|
class Sequence(MetaInterval):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user