From 67a2d17958806ed5f92edba1ec41ea4389907df4 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Tue, 19 Apr 2022 14:16:34 +0900 Subject: [PATCH] =?UTF-8?q?System.Numerics=20=E3=82=92=E9=99=A4=E5=8E=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/UniGLTF/Runtime/UniGLTF/IO/BufferAccessor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/UniGLTF/Runtime/UniGLTF/IO/BufferAccessor.cs b/Assets/UniGLTF/Runtime/UniGLTF/IO/BufferAccessor.cs index 8e7ce4b18..43e4a6273 100644 --- a/Assets/UniGLTF/Runtime/UniGLTF/IO/BufferAccessor.cs +++ b/Assets/UniGLTF/Runtime/UniGLTF/IO/BufferAccessor.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; -using System.Numerics; using System.Runtime.InteropServices; using Unity.Collections; +using UnityEngine; namespace UniGLTF { @@ -281,7 +281,7 @@ namespace UniGLTF for (int i = 0; i < values.Length; ++i) { var v = values[i]; - if (v != Vector3.Zero) + if (v != Vector3.zero) { sparseValuesWithIndex.Add((i, v)); }