File tree 1 file changed +9
-4
lines changed
src/Assimp/Silk.NET.Assimp/Enums
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
- /*
1
+ /*
2
2
* Copyright (c) 2012-2014 AssimpNet - Nicholas Woodfield
3
3
*
4
4
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -30,7 +30,7 @@ namespace Silk.NET.Assimp
30
30
/// data or optimize the imported data.
31
31
/// </summary>
32
32
[ Flags ]
33
- public enum PostProcessSteps
33
+ public enum PostProcessSteps : uint
34
34
{
35
35
/// <summary>
36
36
/// No flags enabled.
@@ -416,6 +416,11 @@ public enum PostProcessSteps
416
416
/// <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
417
417
/// removed if and only if all bones within the scene qualify for removal.</para>
418
418
/// </summary>
419
- Debone = 0x4000000
419
+ Debone = 0x4000000 ,
420
+
421
+ /// <summary>
422
+ /// Calculates mesh axis aligned bounding boxes <see cref="Mesh.MAABB"/>
423
+ /// </summary>
424
+ GenerateBoundingBoxes = 0x80000000 ,
420
425
}
421
- }
426
+ }
You can’t perform that action at this time.
0 commit comments