From d85ce88f2ec1ece45fe28200072de408df1272d8 Mon Sep 17 00:00:00 2001 From: Martin Valigursky Date: Thu, 5 Mar 2026 12:29:59 +0000 Subject: [PATCH] fix: set flipbook example playback to 15fps to match captured frame rate The source frames were captured at 15fps, so playing back at 30fps resulted in double-speed animation. Made-with: Cursor --- examples/src/examples/gaussian-splatting/flipbook.example.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/src/examples/gaussian-splatting/flipbook.example.mjs b/examples/src/examples/gaussian-splatting/flipbook.example.mjs index 2cdb4e3fd9f..98986c2e567 100644 --- a/examples/src/examples/gaussian-splatting/flipbook.example.mjs +++ b/examples/src/examples/gaussian-splatting/flipbook.example.mjs @@ -115,7 +115,7 @@ assetListLoader.load(() => { player.addComponent('script'); const flipbook = player.script.create(GsplatFlipbook); if (flipbook) { - flipbook.fps = 30; + flipbook.fps = 15; flipbook.folder = 'https://code.playcanvas.com/examples_data/example_basketball_02'; flipbook.filenamePattern = '{frame:03}.compressed.ply'; flipbook.startFrame = 1;