mirror of
https://github.com/open-goal/jak-project
synced 2026-08-21 14:54:53 -04:00
d/jak2: finish glist | glist-h | camera | cam-interface | cam-states-dbg | cam-combiner | cam-debug | cam-start (#1829)
* d/jak2: finish `glist` and `glist-h` partially done `time-of-day` * d/jak2: finish `camera` and `cam-interface` * d/jak2: partially finish `cam-master` `cam-states`, and `cam-update` finish `cam-states-dbg` `cam-combiner` `cam-debug` and `cam-start` * tests: update ref tests * scripts: add scripts to automatically update gsrc files * d/jak2: update gsrc
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import argparse
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--game")
|
||||
args = parser.parse_args()
|
||||
import os
|
||||
import glob
|
||||
|
||||
def delete_extension(ext):
|
||||
fileList = glob.glob('./decompiler_out/{}/*.{}'.format(args.game, ext))
|
||||
for filePath in fileList:
|
||||
os.remove(filePath)
|
||||
|
||||
delete_extension("gc")
|
||||
delete_extension("asm")
|
||||
Reference in New Issue
Block a user