Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions src/Assimp/Silk.NET.Assimp/Enums/PostProcessSteps.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Copyright (c) 2012-2014 AssimpNet - Nicholas Woodfield
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -30,7 +30,7 @@ namespace Silk.NET.Assimp
/// data or optimize the imported data.
/// </summary>
[Flags]
public enum PostProcessSteps
public enum PostProcessSteps : uint
{
/// <summary>
/// No flags enabled.
Expand Down Expand Up @@ -416,6 +416,11 @@ public enum PostProcessSteps
/// <para>Usage of the configuration AI_CONFIG_PP_DB_THRESHOLD to control the threshold and AI_CONFIG_PP_DB_ALL_OR_NONE if you want bones
/// removed if and only if all bones within the scene qualify for removal.</para>
/// </summary>
Debone = 0x4000000
Debone = 0x4000000,

/// <summary>
/// Calculates mesh axis aligned bounding boxes <see cref="Mesh.MAABB"/>
/// </summary>
GenerateBoundingBoxes = 0x80000000,
}
}
}
Loading