d/jak2: decompile conveyor | elevator | plat | bouncer | basebutton | base-plat | most of sampler | simple-nav-sphere | simple-focus | elec-gate and blocking-plane (#1942)

Most of these have been atleast partially documented / named / cleaned
up as well.

Co-authored-by: water <awaterford111445@gmail.com>
This commit is contained in:
Tyler Wilding
2022-10-08 12:42:52 -04:00
committed by GitHub
parent 2d1b5fa57c
commit be1e40a041
183 changed files with 12021 additions and 2055 deletions
+1 -1
View File
@@ -48,5 +48,5 @@ def get_ref_path_from_filename(game_name, file_name, ref_folder):
if src_path == "":
print("couldn't determine ref path for {}:{}!".format(game_name, file_name))
exit(1)
path = "{}/{}/{}/{}_REF.gc".format(ref_folder, game_name, src_path, file_name)
path = os.path.join(ref_folder, game_name, src_path, "{}_REF.gc".format(file_name))
return path