You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you add some samples to show how to use Vultaik with 3D library like AssimpNetter (https://github.com/Saalvage/AssimpNetter)
AssimpNetter is fantastic but I havn't find a really good choice to show 3D models. I have tested OpenTK, Silk.Net, SharpDX but your tool seems to have a lot of intersting things.
static void Main(string[] args)
{
// Load the GLTF file
var importer = new AssimpContext();
Scene scene = importer.ImportFile(@"YOUR_3D_MODEL_PATH", PostProcessPreset.TargetRealTimeMaximumQuality);
// Check if the scene was loaded successfully
if (scene == null)
{
Console.WriteLine("Failed to load the GLTF file.");
return;
}
DisplayScene(scene);
}
static void DisplayScene(Scene scn)
{
// Display the scene with Vultaik
}
}
Thanks again
The text was updated successfully, but these errors were encountered:
Hi,
Thanks a lot for your great job !!!
Can you add some samples to show how to use Vultaik with 3D library like AssimpNetter (https://github.com/Saalvage/AssimpNetter)
AssimpNetter is fantastic but I havn't find a really good choice to show 3D models. I have tested OpenTK, Silk.Net, SharpDX but your tool seems to have a lot of intersting things.
If you need samples 3D Gltf objects, you can find here : https://github.com/KhronosGroup/glTF-Sample-Models/tree/main/2.0
using System;
using Assimp;
using Vultaik;
class Program
{
}
Thanks again
The text was updated successfully, but these errors were encountered: