Here are the examples of the csharp api UnityEngine.Vector3Int.Distance(UnityEngine.Vector3Int, UnityEngine.Vector3Int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
19
View Source File : UnityEngine_Vector3Int_Wrap.cs
License : MIT License
Project Creator : focus-creative-games
License : MIT License
Project Creator : focus-creative-games
[Puerts.MonoPInvokeCallback(typeof(Puerts.V8FunctionCallback))]
private static void F_Distance(IntPtr isolate, IntPtr info, IntPtr self, int paramLen, long data)
{
try
{
{
var argHelper0 = new Puerts.ArgumentHelper((int)data, isolate, info, 0);
var argHelper1 = new Puerts.ArgumentHelper((int)data, isolate, info, 1);
{
var Arg0 = argHelper0.Get<UnityEngine.Vector3Int>(false);
var Arg1 = argHelper1.Get<UnityEngine.Vector3Int>(false);
var result = UnityEngine.Vector3Int.Distance(Arg0,Arg1);
Puerts.PuertsDLL.ReturnNumber(isolate, info, result);
}
}
}
catch (Exception e)
{
Puerts.PuertsDLL.ThrowException(isolate, "c# exception:" + e.Message + ",stack:" + e.StackTrace);
}
}