mirror of
https://github.com/aimrebirth/tools.git
synced 2026-04-15 01:43:25 +00:00
Fix cl enum values.
This commit is contained in:
parent
f741ade168
commit
943f38dc96
2 changed files with 3 additions and 3 deletions
|
|
@ -112,7 +112,7 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
throw std::runtime_error("Bad fs object");
|
throw std::runtime_error("No such file or directory: " + normalize_path(p));
|
||||||
|
|
||||||
if (stats)
|
if (stats)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -93,9 +93,9 @@ enum AxisSystem
|
||||||
UE4 = AIM, // Do not use 'Convert scene' during UE4 import!
|
UE4 = AIM, // Do not use 'Convert scene' during UE4 import!
|
||||||
|
|
||||||
ax_aim = AIM,
|
ax_aim = AIM,
|
||||||
ax_ue4,
|
ax_ue4 = ax_aim,
|
||||||
ax_maya_y = MayaYUpZFrontRH,
|
ax_maya_y = MayaYUpZFrontRH,
|
||||||
ax_win_3d_viewer,
|
ax_win_3d_viewer = ax_maya_y,
|
||||||
};
|
};
|
||||||
|
|
||||||
cl::opt<AxisSystem> AS(cl::desc("Choose axis system:"),
|
cl::opt<AxisSystem> AS(cl::desc("Choose axis system:"),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue