This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LLVM Reformatting Moved to CMake project. Added support for global framed animations. Fixed some crash exceptions. Rearranged tab order for dialogs. Added key shortcuts for dialogs. Added support for 2020.
- Loading branch information
1 parent
5fee90b
commit 363d6a7
Showing
16 changed files
with
1,452 additions
and
1,874 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,9 @@ | |
*.out | ||
*.app | ||
*.vs/ | ||
ObjDump/* | ||
build/* | ||
[bB]in/* | ||
*.aps | ||
*.bat | ||
project.h | ||
*.7z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "(Windows) Spustit", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "C:/Program Files/Autodesk/3ds Max 2017/3dsmax.exe", | ||
"args": [], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceFolder}", | ||
"environment": [], | ||
"externalConsole": false | ||
} | ||
] | ||
} |
Submodule xenolib
updated
27 files
+2 −3 | .gitignore | |
+55 −0 | .travis.yml | |
+1 −1 | 3rd_party/precore | |
+61 −0 | CMakeLists.txt | |
+5 −1 | README.md | |
+0 −44 | XenoLib.sln | |
+0 −160 | XenoLib.vcxproj | |
+0 −156 | XenoLib.vcxproj.filters | |
+164 −181 | include/BC.h | |
+103 −92 | include/DRSM.h | |
+144 −133 | include/MTHS.h | |
+208 −212 | include/MXMD.h | |
+49 −51 | include/SAR.h | |
+24 −19 | include/XenoLibAPI.h | |
+104 −117 | source/BC.cpp | |
+145 −149 | source/DRSM.cpp | |
+298 −303 | source/LBIM.cpp | |
+101 −118 | source/MTHS.cpp | |
+295 −324 | source/MTXT.cpp | |
+36 −16 | source/MXMD.cpp | |
+36 −51 | source/MXMD_Internal.h | |
+370 −440 | source/MXMD_V1.h | |
+210 −246 | source/MXMD_V3.h | |
+49 −51 | source/PNGWrap.cpp | |
+53 −63 | source/SAR.cpp | |
+236 −244 | source/addrlib.h | |
+221 −207 | source/addrlib.inl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
cmake_minimum_required(VERSION 3.3) | ||
|
||
project(XenoMax VERSION 1.2) | ||
|
||
set(TARGETEX_LOCATION 3rd_party/XenoLib/3rd_party/PreCore/cmake) | ||
include(${TARGETEX_LOCATION}/3dsmax.cmake) | ||
|
||
set (XenoLibLibraryPath ../XenoLib_${CMAKE_GENERATOR_PLATFORM}_${CHAR_TYPE}) | ||
|
||
add_subdirectory(3rd_party/XenoLib ${XenoLibLibraryPath}) | ||
|
||
build_target( | ||
TYPE SHARED | ||
SOURCES | ||
src/DllEntry.cpp | ||
src/XenoImp.cpp | ||
src/XenoImport.cpp | ||
src/XenoImp.rc | ||
src/XenoMax.def | ||
${MAX_EX_DIR}/win/About.rc | ||
LINKS | ||
gdiplus bmm core Morpher XenoLib flt mesh maxutil maxscrpt paramblk2 geom | ||
DEFINITIONS | ||
${MaxDefinitions} | ||
INCLUDES | ||
${MaxSDK}/include | ||
3rd_party/XenoLib/include | ||
3rd_party/XenoLib/3rd_party/PreCore | ||
LINK_DIRS | ||
${MaxSDKLibrariesPath} | ||
AUTHOR "Lukas Cone" | ||
DESCR "Xenoblade Engine 3DS Max Plugin" | ||
NAME "XenoMax" | ||
START_YEAR 2017 | ||
PROPERTIES | ||
SUFFIX .dlu | ||
${MaxProperties} | ||
) | ||
|
||
build_morpher() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.