More work

This commit is contained in:
Benjamin Rosseaux 2023-08-12 01:34:53 +02:00
commit c9aad4c897
6 changed files with 13 additions and 1 deletions

6
.gitmodules vendored
View file

@ -19,3 +19,9 @@
[submodule "externals/pasgltf"]
path = externals/pasgltf
url = https://github.com/BeRo1985/pasgltf.git
[submodule "externals/poca"]
path = externals/poca
url = https://github.com/BeRo1985/poca.git
[submodule "externals/flre"]
path = externals/flre
url = https://github.com/BeRo1985/flre.git

View file

@ -7,4 +7,6 @@ if [ ! -d "./externals/kraft" ]; then ln -s ../../KRAFT.github/trunk ./externals
if [ ! -d "./externals/pasjson" ]; then ln -s ../../PASJSON.github/trunk ./externals/pasjson; fi
if [ ! -d "./externals/pasgltf" ]; then ln -s ../../PASGLTF.github/trunk ./externals/pasgltf; fi
if [ ! -d "./externals/rnl" ]; then ln -s ../../RNL.github/trunk ./externals/rnl; fi
if [ ! -d "./externals/flre" ]; then ln -s ../../FLRE.github/trunk ./externals/flre; fi
if [ ! -d "./externals/poca" ]; then ln -s ../../POCA.github/trunk ./externals/poca; fi

View file

@ -7,4 +7,6 @@ if not exist externals\kraft mklink /J externals\kraft ..\..\KRAFT.github\trunk
if not exist externals\pasjson mklink /J externals\pasjson ..\..\PASJSON.github\trunk
if not exist externals\pasgltf mklink /J externals\pasgltf ..\..\PASGLTF.github\trunk
if not exist externals\rnl mklink /J externals\rnl ..\..\RNL.github\trunk
if not exist externals\flre mklink /J externals\flre ..\..\FLRE.github\trunk
if not exist externals\poca mklink /J externals\poca ..\..\POCA.github\trunk

1
externals/flre vendored Submodule

@ -0,0 +1 @@
Subproject commit 187dbb7bd5d6ce20391620fadd5953303df6b116

1
externals/poca vendored Submodule

@ -0,0 +1 @@
Subproject commit ece38392e0dd8f2e30669f6e0169cd28da326614

View file

@ -6612,7 +6612,7 @@ begin
end;
procedure TpvScene3D.TGroup.TAnimation.AssignFromGLTF(const aSourceDocument:TPasGLTF.TDocument;const aSourceAnimation:TPasGLTF.TAnimation);
var Index,ChannelIndex,ValueIndex:TPasGLTFSizeInt;
var ChannelIndex,ValueIndex:TPasGLTFSizeInt;
SourceAnimationChannel:TPasGLTF.TAnimation.TChannel;
SourceAnimationSampler:TPasGLTF.TAnimation.TSampler;
DestinationAnimationChannel:TAnimation.PChannel;