Added customizer ability to change GT cutscene gfx

This commit is contained in:
codemann8
2025-08-25 11:21:44 -05:00
parent 8372a8a9bf
commit c3d6c96e79
5 changed files with 150 additions and 2 deletions

View File

@@ -298,6 +298,11 @@ class CustomSettings(object):
if 'enemies' in self.file_source:
return self.file_source['enemies']
return None
def get_gtentry(self):
if 'gt_entry' in self.file_source:
return self.file_source['gt_entry']
return None
def get_attribute_by_player_composite(self, attribute, player):