From 3ba32fc0147711573a60aa9154bf65a5f9cfa2fa Mon Sep 17 00:00:00 2001 From: notargs Date: Thu, 11 Nov 2021 15:18:40 +0900 Subject: [PATCH] rm Pack=1 --- Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshVertex.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshVertex.cs b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshVertex.cs index ae6c5287d..4db319f40 100644 --- a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshVertex.cs +++ b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshVertex.cs @@ -8,7 +8,7 @@ namespace UniGLTF /// インターリーブされたメッシュの頂点情報を表す構造体 /// そのままGPUにアップロードされる /// - [StructLayout(LayoutKind.Sequential, Pack = 1)] + [StructLayout(LayoutKind.Sequential)] internal readonly struct MeshVertex { private readonly Vector3 _position;