mirror of
https://github.com/open-goal/jak-project
synced 2026-07-04 21:35:47 -04:00
7320bfc068
I added extraction of ambients to json files when extracting the levels. All of the ambient json files are written to the same folder as actors are. Ambients aren't used in jak2 and 3 so it only is used on jak1.  --------- Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
11 lines
299 B
C++
11 lines
299 B
C++
#pragma once
|
|
|
|
#include "decompiler/level_extractor/BspHeader.h"
|
|
|
|
namespace decompiler {
|
|
|
|
std::string extract_actors_to_json(const level_tools::DrawableInlineArrayActor& actors);
|
|
std::string extract_ambients_to_json(const level_tools::DrawableInlineArrayAmbient& actors);
|
|
|
|
} // namespace decompiler
|