Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add wizard to convert/replace references #403

Merged
merged 18 commits into from
Jan 22, 2022
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions OutfitStudio.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@
<None Include="lib\gli\glm\gtx\wrap.inl" />
<None Include="res\xrc\About.xrc" />
<None Include="res\xrc\Actions.xrc" />
<None Include="res\xrc\ConvertBodyReference.xrc" />
<None Include="res\xrc\OutfitStudio.xrc" />
<None Include="res\xrc\Project.xrc" />
<None Include="res\xrc\SavePreset.xrc" />
Expand Down Expand Up @@ -748,6 +749,7 @@
<ClInclude Include="src\files\ObjFile.h" />
<ClInclude Include="src\files\ResourceLoader.h" />
<ClInclude Include="src\files\TriFile.h" />
<ClInclude Include="src\program\ConvertBodyReferenceDialog.h" />
<ClInclude Include="src\program\EditUV.h" />
<ClInclude Include="src\program\FBXImportDialog.h" />
<ClInclude Include="src\program\FBXImportOptions.h" />
Expand Down Expand Up @@ -820,6 +822,7 @@
<ClCompile Include="src\files\ObjFile.cpp" />
<ClCompile Include="src\files\ResourceLoader.cpp" />
<ClCompile Include="src\files\TriFile.cpp" />
<ClCompile Include="src\program\ConvertBodyReferenceDialog.cpp" />
<ClCompile Include="src\program\EditUV.cpp" />
<ClCompile Include="src\program\FBXImportDialog.cpp" />
<ClCompile Include="src\program\GroupManager.cpp" />
Expand Down
9 changes: 9 additions & 0 deletions OutfitStudio.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,9 @@
<None Include="lib\gli\glm\gtx\color_space_YCoCg.inl">
<Filter>Libraries\gli\glm\gtx</Filter>
</None>
<None Include="res\xrc\ConvertBodyReference.xrc">
<Filter>Resources</Filter>
</None>
</ItemGroup>
<ItemGroup>
<ClInclude Include="resource.h">
Expand Down Expand Up @@ -1753,6 +1756,9 @@
<ClInclude Include="src\ui\wxSliderPanel.h">
<Filter>UI</Filter>
</ClInclude>
<ClInclude Include="src\program\ConvertBodyReferenceDialog.h">
<Filter>Program</Filter>
</ClInclude>
<ClInclude Include="src\utils\ConfigDialogUtil.h">
<Filter>Utilities</Filter>
</ClInclude>
Expand Down Expand Up @@ -1962,6 +1968,9 @@
<ClCompile Include="src\ui\wxSliderPanel.cpp">
<Filter>UI</Filter>
</ClCompile>
<ClCompile Include="src\program\ConvertBodyReferenceDialog.cpp">
<Filter>Program</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<Xml Include="Config.xml">
Expand Down
Loading