2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 15:44:56 +00:00

Update submodules

This commit is contained in:
Jack Andersen
2018-09-02 14:45:32 -10:00
parent be1184f822
commit e16ef9709d
5 changed files with 12 additions and 4 deletions

View File

@@ -271,7 +271,7 @@ def cookcol(writebuf, mesh_obj):
surfaceDirt = prop_val_from_colmat('retro_surface_dirt', m)
surfaceLava = prop_val_from_colmat('retro_surface_lava', m)
surfaceSPMetal = prop_val_from_colmat('retro_surface_sp_metal', m)
surfaceStoneRock = prop_val_from_colmat('retro_surface_stone_rock', m)
surfaceStoneRock = prop_val_from_colmat('retro_surface_lava_stone', m)
surfaceSnow = prop_val_from_colmat('retro_surface_snow', m)
surfaceMudSlow = prop_val_from_colmat('retro_surface_mud_slow', m)
surfaceFabric = prop_val_from_colmat('retro_surface_fabric', m)

2
hecl/extern/athena vendored

Submodule hecl/extern/athena updated: b57390e304...488acc8675

2
hecl/extern/boo vendored

Submodule hecl/extern/boo updated: 70b2518751...c78afbdcdd

View File

@@ -288,7 +288,7 @@ struct ColMesh
bool surfaceDirt;
bool surfaceLava;
bool surfaceSPMetal;
bool surfaceStoneRock;
bool surfaceLavaStone;
bool surfaceSnow;
bool surfaceMudSlow;
bool surfaceFabric;

View File

@@ -430,6 +430,14 @@ static void VisitDirectory(const ProjectPath& dir,
if (dir.getLastComponent().size() > 1 && dir.getLastComponent()[0] == _S('.'))
return;
if (hecl::ProjectPath(dir, _S("!project.yaml")).isFile() &&
hecl::ProjectPath(dir, _S("!pool.yaml")).isFile())
{
/* Handle AudioGroup case */
VisitFile(dir, force, fast, specInsts, progress, cp, cookPass);
return;
}
std::map<SystemString, ProjectPath> children;
dir.getDirChildren(children);