19 lines
400 B
C#
19 lines
400 B
C#
|
|
namespace Pilz.S3DFileParser
|
|
{
|
|
public class LoaderOptions
|
|
{
|
|
public bool LoadMaterials { get; set; } = false;
|
|
public UpAxis UpAxis { get; set; } = UpAxis.Y;
|
|
|
|
public LoaderOptions()
|
|
{
|
|
}
|
|
|
|
public LoaderOptions(bool loadMaterials, UpAxis upAxis)
|
|
{
|
|
LoadMaterials = loadMaterials;
|
|
UpAxis = upAxis;
|
|
}
|
|
}
|
|
} |