File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
tests/UnityTests/Assets/Editor/UnitTests Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ MESSAGE(STATUS "CMAKE_INSTALL_PREFIX is: " ${CMAKE_INSTALL_PREFIX})
1313
1414option (CREATE_PACKAGE "Create Package" OFF )
1515if (NOT DEFINED PACKAGE_VERSION )
16- set (PACKAGE_VERSION "0.0.8a " )
16+ set (PACKAGE_VERSION "0.0.9a " )
1717endif ()
1818
1919if (NOT DEFINED PACKAGE_PATH)
Original file line number Diff line number Diff line change 11#RELEASE NOTES
22
3+ ** Version** : 0.0.9a
4+
5+ Set the Doxygen homepage to be README.txt instead of README.md
6+
7+ Rename namespace to Unity.FbxSdk
8+
9+ Rename FbxSharp.dll and fbxsdk_csharp libaries to UnityFbxSdk.dll and UnityFbxSdkNative respectively
10+
11+ Change documentation title to "Unity FBXSDK C# API Reference"
12+
13+ Package zip file containing Doxygen documentation
14+
15+ Update license in README to Autodesk license
16+
317** Version** : 0.0.8a
418
519Updated LICENCSE.txt to include Autodesk license
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public void TestCoverage() {
3333 alltypes = typeof ( Unity . FbxSdk . Globals ) . Assembly . GetTypes ( ) ;
3434 var methodsToCover = new List < MethodBase > ( ) ;
3535 foreach ( var t in alltypes ) {
36- if ( t . Namespace != "FbxSdk" ) {
36+ if ( t . Namespace != "Unity. FbxSdk" ) {
3737 continue ;
3838 }
3939
@@ -71,7 +71,7 @@ static GlobalsTest()
7171 * its assembly. */
7272 var alltypes = typeof ( Unity . FbxSdk . Globals ) . Assembly . GetTypes ( ) ;
7373 foreach ( var t in alltypes ) {
74- if ( t . Namespace == "FbxSdk" && t . Name == kPINVOKE ) {
74+ if ( t . Namespace == "Unity. FbxSdk" && t . Name == kPINVOKE ) {
7575 s_PINVOKEtype = t ;
7676 break ;
7777 }
You can’t perform that action at this time.
0 commit comments