sukiOS
sukiOS

Scene Integration Demo

Realistic character placement with dynamic lighting & shadows

Back to Showcase
Playground

Character

Scene

Effects

All Characters in Playground

Eli
Lira
Miko
Nova
Ritmo

Phaser Integration Code

// Create character with scene integration
const eli = SukiosSceneIntegration.create(
    this,           // scene
    400, 300,       // x, y position
    'eli',       // character name
    'playground'  // scene preset
);

// Change scene (with smooth transition)
SukiosSceneIntegration.changeScene(this, eli, 'forest', 500);

// Play animation (shadow syncs automatically)
SukiosSceneIntegration.playHappy(this, eli, () => {
    console.log('Animation complete!');
});