Small change necessary to attempt to render DDR PS3 animations.
This commit is contained in:
parent
362456f929
commit
ed5b5beda5
@ -13,6 +13,7 @@ from .swf import (
|
||||
AP2DoActionTag,
|
||||
AP2DefineFontTag,
|
||||
AP2DefineEditTextTag,
|
||||
AP2DefineMorphShapeTag,
|
||||
AP2PlaceCameraTag,
|
||||
AP2ImageTag,
|
||||
)
|
||||
@ -1017,6 +1018,16 @@ class AFPRenderer(VerboseOutput):
|
||||
# Didn't place a new clip.
|
||||
return None, False
|
||||
|
||||
elif isinstance(tag, AP2DefineMorphShapeTag):
|
||||
print("WARNING: Unhandled DEFINE_MORPH_SHAPE tag!")
|
||||
|
||||
self.__registered_objects[tag.id] = RegisteredDummy(
|
||||
tag.id,
|
||||
)
|
||||
|
||||
# Didn't place a new clip.
|
||||
return None, False
|
||||
|
||||
elif isinstance(tag, AP2PlaceCameraTag):
|
||||
self.vprint(f"{prefix} Place camera tag.")
|
||||
self.__camera = PlacedCamera(
|
||||
|
Loading…
x
Reference in New Issue
Block a user