mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-08-25 03:44:27 -05:00
Small change necessary to attempt to render DDR PS3 animations.
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user