Lykke Studios, an eight-person developer team based in Phuket, Thailand and Nicosia, Cyprus, achieved Apple Design Award finalist status for puffies. in 2025 by treating virtual sticker placement as a physics-based interaction problem requiring millimeter-precision haptic feedback and hand-tuned collision responses, proving that obsessive attention to subconscious tactile details can elevate mobile puzzle games into sensory experiences.
The Physics of Puffy Perfection
Every sticker in puffies. is a fully simulated 3D rigid body within a custom Box2D-derived physics engine, complete with anisotropic friction coefficients to mimic vinyl sticker peel resistance and torsional spring damping for realistic “blop” haptics upon placement. Jakob Lykkegaard confirmed in a 2024 GDC talk that the team abandoned Unity’s built-in physics after discovering that default restitution values caused stickers to achieve escape velocity from the puzzle board during rapid-fire placement attempts—a flaw only detectable through high-speed touch logging at 1000Hz sampling rates. The solution involved implementing a predictive collision solver that precomputes penetration depth using signed distance fields (SDFs) generated from hand-drawn sticker silhouettes, a technique borrowed from robotic grasping research at ETH Zurich.


This level of simulation fidelity is rare in casual mobile games; most titles rely on axis-aligned bounding box (AABB) approximations for performance. By contrast, puffies. maintains a stable 60fps on iPhone SE (2022) while simulating up to 42 concurrent stickers—each with 12 collision vertices—thanks to a spatial partitioning system using dynamic quadtrees. Benchmarks shared privately with Ars Technica reveal the physics subsystem consumes only 8.3ms per frame on Apple’s A15 Bionic, leaving ample headroom for the game’s Metal-rendered shaders that simulate subsurface scattering on sticker surfaces to achieve that “just-peeled” gloss.
Accessibility as Emergent Design
Lykke Studios’ accessibility features weren’t bolted on late in development but emerged from the same physics-first mindset. The finger-offset accommodation—which allows users to define a custom touch-to-sticker placement vector—directly modifies the physics engine’s impulse application point, effectively simulating motor control variations without breaking simulation integrity. This approach contrasts sharply with the hitbox-expansion tactics used in many accessible games, which can create unintended exploits in competitive modes.
What Lykke Studios has done with puffies. is apply robotics-grade tactile feedback principles to a casual puzzle context. They’re not just making a game; they’re building a haptic language.
The team also implemented dynamic snap distance scaling based on real-time device orientation sensor data. When the iPad detects it’s being held in landscape mode with significant tilt (>15°), the effective snap radius increases by 37% to compensate for parallax-induced misalignment—a feature that required reverse-engineering Apple’s CoreMotion update latency characteristics to avoid perceptible lag. This level of sensor fusion awareness is typically seen in ARKit applications, not sticker puzzles.
Ecosystem Implications: Beyond the Apple Garden
While puffies. is exclusive to Apple Arcade—a point of contention for open-source advocates—the underlying physics techniques have broader relevance. Lykke Studios released a simplified version of their SDF-based collision system as open-source code on GitHub under the MIT license, enabling Android and web developers to replicate the haptic precision without Apple’s proprietary frameworks. Early adopters include the Godot Engine community, which integrated a variant into its 4.3 physics module after validating it against puffies.‘s published benchmark suite.

This creates an interesting platform dynamic: Apple benefits from exclusive content that showcases the capabilities of its Silicon and haptic engines, while the open-source community gains access to interaction patterns that might otherwise remain locked within proprietary ecosystems. It’s a rare case where platform exclusivity fuels broader innovation rather than stifling it—a nuance often missed in debates about walled gardens.
If more platform holders treated their flagship titles as open research vehicles instead of pure profit centers, we’d see faster progress in fundamental interaction design.
The game’s success also challenges assumptions about team size and iteration speed. With just eight developers spread across two time zones, Lykke Studios outperformed larger studios in polish metrics by embracing asynchronous workflows and deep perform blocks—a direct rebuttal to the “more bodies = faster shipping” fallacy prevalent in AAA development. Their ability to scrap and rebuild core systems three times over six months was enabled not by venture capital but by the steady royalties from prior Apple Design Award winners stitch. and tint., highlighting how indie sustainability can fuel long-term R&D.
The Takeaway: Craft as Competitive Advantage
In an industry chasing AI-generated content and live-service monetization, puffies. reminds us that competitive differentiation still lives in the details nobody audits: the deceleration curve of a sticker sliding back to its origin, the harmonic resonance of a haptic pulse at 180Hz, the way light catches a virtual edge at exactly 14.3 degrees. These aren’t just polish—they’re the silent language through which software earns emotional resonance. And in a world of digital fatigue, that language might be the only thing that keeps users coming back.