UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
MRMeshBufferDefines.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "HAL/Platform.h"
6
7#ifndef WANTS_MRMESH_UVS
8 #if PLATFORM_WINDOWS
9 #define WANTS_MRMESH_UVS 1
10 #elif PLATFORM_IOS
11 #define WANTS_MRMESH_UVS 0
12 #endif
13#endif
14
15#ifndef WANTS_MRMESH_TANGENTS
16 #if PLATFORM_WINDOWS
17 #define WANTS_MRMESH_TANGENTS 1
18 #elif PLATFORM_IOS
19 #define WANTS_MRMESH_TANGENTS 0
20 #endif
21#endif
22
23#ifndef WANTS_MRMESH_COLORS
24 #if PLATFORM_WINDOWS
25 #define WANTS_MRMESH_COLORS 1
26 #elif PLATFORM_IOS
27 #define WANTS_MRMESH_COLORS 0
28 #endif
29#endif
30
31#ifndef MRMESH_INDEX_TYPE
32 #define MRMESH_INDEX_TYPE uint32
33#endif