Is there a possibility to create or modify .glb or .gltf files in PHP?
For example, I want to load a .glb file, modify it and save it again, similar to "Image Processing and Generation"-functions.
Pseudo code:
$model = @modelcreatefromglb("model.glb");
modelstring($model, 5, 0, 0, 0, "Hello world!");
modelglb($model, "model-with-text.glb");
I only found a small library for "blender" (.blend-Files), but this is not the desired way.