Showing results for

player

movement

on ceramic-engine.com
ceramic-engine.com › api docs › clay native › ceramic
NapePhysicsBodyType - Ceramic
...Use for:
- Moving platforms
- Elevators
- Enemies with scripted movement
- Player characters (when not using physics-based movement)
ceramic-engine.com › guides › input
Input - Ceramic
...class GameScene extends Scene {
var player:Player;
override function update(delta:Float) {
// Continuous movement while held
if (input.keyPressed(LEFT)) {
ceramic-engine.com › api docs › clay native › ceramic
Camera - Ceramic
...Features:
- Smooth target following with configurable speed and curves
- Dead zones to reduce camera movement for small target changes
- Content boundary clamping to keep...
ceramic-engine.com › api docs › clay native › ceramic
GeometryUtils - Ceramic
...Check if circles or other shapes intersect
- Movement: Calculate distances and angles for object positioning
- Rendering: Determine winding order for proper triangle rendering
Example...