public enum BufferStrategy extends java.lang.Enum<BufferStrategy>
Buffer
instances when converting an OBJ file into a glTF asset.| Enum Constant and Description |
|---|
BUFFER_PER_FILE
Create one
Buffer for the whole OBJ file |
BUFFER_PER_GROUP
Create one
Buffer for each MTL group |
BUFFER_PER_PART
Create one
Buffer for each part (for the case that
the geometry data was split into multiple parts to obey
the 16 bit index constraint) |
| Modifier and Type | Method and Description |
|---|---|
static BufferStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BufferStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BufferStrategy BUFFER_PER_FILE
Buffer for the whole OBJ filepublic static final BufferStrategy BUFFER_PER_GROUP
Buffer for each MTL grouppublic static final BufferStrategy BUFFER_PER_PART
Buffer for each part (for the case that
the geometry data was split into multiple parts to obey
the 16 bit index constraint)public static BufferStrategy[] values()
for (BufferStrategy c : BufferStrategy.values()) System.out.println(c);
public static BufferStrategy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2022. All Rights Reserved.