Skip to content

[Assimp] Add missing GenerateBoundingBoxes flag #2447

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 20, 2025
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