Skip to content

Commit 4b7320c

Browse files
committed
update fbxsdk
1 parent d835006 commit 4b7320c

File tree

5 files changed

+1497
-1389
lines changed

5 files changed

+1497
-1389
lines changed
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated />
3+
//
4+
// This file was automatically generated by SWIG (http://www.swig.org).
5+
// Version 3.0.12
6+
//
7+
// Do not make changes to this file unless you know what you are doing--modify
8+
// the SWIG interface file instead.
9+
//------------------------------------------------------------------------------
10+
11+
namespace Unity.FbxSdk {
12+
13+
public class FbxPropertyEGateFit : FbxProperty {
14+
private global::System.Runtime.InteropServices.HandleRef swigCPtr;
15+
16+
internal FbxPropertyEGateFit(global::System.IntPtr cPtr, bool cMemoryOwn) : base(GlobalsPINVOKE.FbxPropertyEGateFit_SWIGUpcast(cPtr), cMemoryOwn) {
17+
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
18+
}
19+
20+
internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxPropertyEGateFit obj) {
21+
return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
22+
}
23+
24+
public override void Dispose() {
25+
lock(this) {
26+
if (swigCPtr.Handle != global::System.IntPtr.Zero) {
27+
if (swigCMemOwn) {
28+
swigCMemOwn = false;
29+
throw new global::System.MethodAccessException("C++ destructor does not have public access");
30+
}
31+
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
32+
}
33+
global::System.GC.SuppressFinalize(this);
34+
base.Dispose();
35+
}
36+
}
37+
38+
public FbxPropertyEGateFit Set(FbxCamera.EGateFit pValue) {
39+
FbxPropertyEGateFit ret = new FbxPropertyEGateFit(GlobalsPINVOKE.FbxPropertyEGateFit_Set(swigCPtr, (int)pValue), false);
40+
if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
41+
return ret;
42+
}
43+
44+
public FbxCamera.EGateFit Get() {
45+
FbxCamera.EGateFit ret = (FbxCamera.EGateFit)GlobalsPINVOKE.FbxPropertyEGateFit_Get(swigCPtr);
46+
if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
47+
return ret;
48+
}
49+
50+
public FbxCamera.EGateFit EvaluateValue(FbxTime pTime, bool pForceEval) {
51+
FbxCamera.EGateFit ret = (FbxCamera.EGateFit)GlobalsPINVOKE.FbxPropertyEGateFit_EvaluateValue__SWIG_0(swigCPtr, FbxTime.getCPtr(pTime), pForceEval);
52+
if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
53+
return ret;
54+
}
55+
56+
public FbxCamera.EGateFit EvaluateValue(FbxTime pTime) {
57+
FbxCamera.EGateFit ret = (FbxCamera.EGateFit)GlobalsPINVOKE.FbxPropertyEGateFit_EvaluateValue__SWIG_1(swigCPtr, FbxTime.getCPtr(pTime));
58+
if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
59+
return ret;
60+
}
61+
62+
public FbxCamera.EGateFit EvaluateValue() {
63+
FbxCamera.EGateFit ret = (FbxCamera.EGateFit)GlobalsPINVOKE.FbxPropertyEGateFit_EvaluateValue__SWIG_2(swigCPtr);
64+
if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
65+
return ret;
66+
}
67+
68+
}
69+
70+
}

Packages/com.unity.formats.fbxsdk/Scripts/FbxPropertyEGateFit.cs.meta

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)