You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Packages/com.autodesk.fbx/Documentation/com.autodesk.fbx.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# About the FBX SDK C# Bindings package
2
2
3
-
__Version__: 1.6.0-preview
3
+
__Version__: 1.7.0-preview
4
4
5
5
The FBX SDK C# Bindings provide access from Unity C# scripts to a subset of the Autodesk FBX SDK, version 2018.1.
6
6
@@ -30,18 +30,19 @@ The FBX Exporter package contains:
30
30
31
31
There is no API documentation in the preview package. Refer to the <ahref="http://help.autodesk.com/view/FBX/2018/ENU/">Autodesk FBX SDK API documentation</a>.
32
32
33
-
The bindings are in the `Unity.FbxSdk` namespace:
33
+
The bindings are in the `Autodesk.Fbx` namespace:
34
34
35
35
```
36
-
using UnityEngine.Formats.FbxSdk;
36
+
using Autodesk.Fbx;
37
+
using UnityEditor;
37
38
using UnityEngine;
38
39
39
40
public class HelloFbx {
40
-
[MenuItem("Fbx/Hello")]
41
-
public static void Hello() {
42
-
using(var manager = FbxManager.Create()) {
43
-
Debug.LogFormat("FBX SDK is version {0}, FbxManager.GetVersion());
44
-
}
41
+
[MenuItem("Fbx/Hello")]
42
+
public static void Hello() {
43
+
using(var manager = FbxManager.Create()) {
44
+
Debug.LogFormat("FBX SDK is version {0}", FbxManager.GetVersion());
0 commit comments