Thanks for sharing !
I hope you find a way to evade that "depression" stage in your development, one way or another, I wish you take care of yourself <3
Coding Mojo
Creator of
Recent community posts
I've always loved the polish phase of game development.
Adding game feel can completely transform a game. After weeks (or even months) spent building gameplay systems, it's often the moment where everything finally starts feeling alive. The downside : probably the most time-consuming parts of development, at a stage I’m already exhausted… Jumping through your codebase, writing countless one-off animation scripts, camera effects, and little feedback systems. OMG…
And to achieve the picture, have you ever, like me, spent hours adding juice to a game after weeks of coding, only to discover that... it just still s**k ?
No way I could continue this way, so I changed my workflow. Instead of treating game feel as the final polish pass, I started adding it during the prototyping phase. But as juicing up requires so much effort, I ended up building a small animation tool for myself that lets me iterate extremely quickly.
The result ? I can discard weak prototypes much earlier. I can focus on the mechanics that actually have potential. AND, I finally stay motivated throughout development because the game already feels satisfying from the very beginning.
Looking back, it's probably had a bigger impact on my development process than almost any other tool I've made so far.
How do you approach this phase and how do you manage to keep motivated on the long run ?
My Idle Breakout game welcomes a second player !
Yeah, I thought it would be fun to have a versus mode. So here it is, a second player support (local).
But there is more :
1 : Power Bars
Brick destroyed now fills a power bar, once the bar is full, player can consume it to trigger it's ball special ability. For now, abilities are not integrated yet, but it's my next step !
2 : UI
Ui is my nightmare. I tried to avoid this step for a while, but now, it's time to start. BUT, thanks to this awesome youtube tutorial , it turned to be pretty simple to get started. So, because I like to work the game feel as the game goes, I had to make a few update to my Feel Craft tool so it now supports animating some UI components. Also, as the game feel gets more intensive, I had to do a performance pass on it.
This is how it looks so far.
Thanks for reading :)
To make my life easier, I came up with the idea of creating the levels for my Idle-Breakout from pixel art images, and the craziest part is that it actually works!
It all started from a tutorial I published on my youtube channel about how to create a very basic Breakout game. At the end of the video, I encouraged viewers to customize it as a way to deepen their learning, but I received a few comments from people who simply lacked ideas to experiment with.
So I decided to lead by example.
The idea came to me pretty quickly : modernize classic arcade Breakout with a versus mode and remove the paddle to turn it into an idle game!
It was only supposed to be a small creative exercise, material for a new video. But I wanted a visually appealing level, and the way levels were created in this simplified version was incredibly tedious... A huge 2D array of integers that had to be filled manually, where each integer represented a specific color. Not only was it time-consuming to create, but it was also extremely difficult to visualize the final result, if not outright impossible once the level reached a certain size.
"It would be so much easier to draw my image in pixel art and interpret it as a level."
An idea mostly born from laziness, I have to admit. But in the end, I absolutely love the result!
Wondering how it works? It's actually pretty simple. I have two pixel art images : one for the background and one for the foreground. The code loads both images and creates a brick for every pixel in the image. If a pixel is transparent, it gets ignored. Pixels located along the edges of the foreground generate indestructible blocks.
With SRP optimization, it works flawlessly for a level like this one, which contains roughly 3,000 cubes. A steady 120 FPS, even though each cube has a different color applied using material.SetColor().
But I quickly came back down to earth when I tried building a larger level. At around 5,000 cubes, I was already down to 30 FPS. And that's without any gameplay at all, just rendering the cubes.
Using a Material Property Block? Bad idea, the result was even worse... 9 FPS. Vertex colors? Well, I'll spare you the days of trial and error... Eventually, out of options, I made a post on Reddit and someone suggested using RSUV combined with GPU Instancing. Completely new territory for me, I had never even heard of it before. After a bit of reading, a few lines of code, and a brand-new shader with RSUV support, I suddenly had a completely new way of changing the colors of my bricks!
Boom ! 25,000 bricks, still running at 120 FPS. Wonderful. That's my solution. More than enough to create levels up to 128x128 pixels, although I doubt I'll ever go beyond 64x64 anyway, so there's no need to optimize further than that.
But... I ran into another small problem... My visual feedback tool, Feel Craft, the one I use to create all the little animations you can see in my videos, didn't yet support color animations driven by RSUV... No matter, I pushed an update to my tool right away!
The current designs are cute, but I don't think they're particularly satisfying to play. I'll need to find an aesthetic that allows the ball to bounce around and enter bounce tunnels... I'll give it some thought over the next few days!
In the meantime, I hope you enjoyed the read :)
Last 24H to benefit from the 40% founding sale, get a wonderful tool that will help you add dynamic, responsive, and authentic game feel to your games and support me in improving that tool even more.
Feel Craft helps your game to stand out with immersive, responsive, and natural-feeling gameplay, without the hassle of complex coding.
Check the Feel Craft page here
Simple Cube Demo
Breakout Game Demo
Full Tutorial
Thanks !
I felt in love with the Game Feel task. It's really empowering to go from "working" game to a "satisfying" one and feel how the game mechanics reach their full potential with that polish phase.
This is a before/after of what I got recently with a simple Breakout game
In order to reduce that friction and help me itterate faster on feedbacks, I created this unity tool based on a property mutation system built around three core principles.
First, I wanted it to be based on additive layers as multiple animations should be able to affect the same property simultaneously. While this is intuitive for properties like position or scale, it can feel less natural with values such as color.
Second every animation should be reversible both during loops and when the animation state ends. This guarantees clean transitions and prevents permanent drift in modified properties.
Third, the architecture should minimize overhead, composing complex layered feedbacks in a lightweight and scalable way.
May you wanna learn more, there is an ongoing sale, 40% off on to celebrate version 2.0 HERE
New Demo & Version Update !
Hey everyone!
I've spent the last few days diving deep into refining and juicing up a simple Snake game, and I’m really excited to share the results with you all!
This new update brings along a fresh demo, showcasing what you can do with my tool, along with a brand new version packed with some cool tweaks and improvements. Whether you’re just getting started or already familiar with the tool, you’ll find some nice upgrades that should make creating even more fun and intuitive.
Take it for a spin, let me know what you think, and as always, feel free to drop any feedback or ideas! I’m always looking to make it better and more fun for everyone.
Happy coding, and enjoy the new features!
---------------------------------------------------
# 1.2.0
### Optimizations
- Improved performance by adding Pooling to Feel Manager
### Features
- Added ability to handle GameObject.SetActive() in the tool
### Quality Of Life
- FeelComponent.FreezeVariantByName allow to freeze and extends variant by X seconds
- FeelComponent.FreezeVariantById allow to freeze and extends variant by X seconds
### Demo
- Added Snake demo project
On my journey to add more demo projects to the Feel Craft package, I just created a Snake game.
Not the smartest pick — turns out it’s really hard to add game feel to such a simple concept! After some solo brainstorming (and a bit of Reddit help), TADA — here it is !
I’m actually really happy with the result, and even discovered a few improvement ideas along the way...
Let me know what you think !
What is Feel Craft ? FeelCraft allows game developers to instantly add dynamic, responsive, and authentic game feel to any game object. With just a few clicks, you can animate any object and make it react to player input in ways that feel natural, fluid, and rewarding.
Non-exhaustive usage examples :
- squash/stretch so jump feel crisp and rewarding,
- camera shakes when user gets hit,
- rhythmic pulses on music games,
- weapon shake on user input
- particle trails behind a character
- enemies react to hits
- environmental feedback like falling leaves
- camera mouvements for road feel, like when a car is acceleration
- flash and camera zoom during critical strikes
- car weight during turns / acceleration / brake / accident
- ...
Thanks for reading, any feedback is welcome :)
Feel Craft : 1.1.0
Hey devs!
I'm excited to share a new update to FeelCraft — version 1.1.0 is live!This version focuses on giving more control over how and when game feel effects are triggered and handled, along with better flexibility for real-time gameplay and performance optimization.
Here’s what’s new:
Breaking Changes
- The method
VariantDesactivated()has been removed. If you're using it, you'll need to migrate to the new system below.
Feel Component Improvements
- New Ways to Control Variants
- DeactivateVariantByName End any variant by its name — super useful when you don’t have the ID on hand.
- DeactivateVariantById End a specific variant using its unique ID (which
ActivateVariant()now returns). - ActivateVariant() Power Parameter You can now scale the intensity of a Variant with a
Powermultiplier! Want to reverse an effect? Pass a negative value. Default is still1.
Particle System Optimization
- You can now pre-instantiate particles, which improves performance — especially useful when spawning lots of effects at once.
Variant Behavior Upgrades
- New Loop Modes:
LoopMode.Hold: Keeps the effect going until you explicitly end it (great for things like engine idle or hover states).
- New Termination Modes:
Return: Animates the object back to its original position before completing.ReturnAndSelfDestruct: Same as above, but also tries to destroy the target after the return.
Taste System Tweaks
- Tastes now support a Power multiplier just like Variants. You can now scale or invert their effect — useful for creating mirrored reactions or intensity-based feedback.
- Added support for Power(Min/Max) caps to keep things stable and within expected bounds.
Why This Matters
This update gives you more precise control over what’s happening, especially in fast-paced or reactive gameplay situations. You can now:
- Scale effects dynamically based on input or physics
- Fine-tune looping behavior
- Cleanly terminate effects when needed
- Improve runtime performance for particle-heavy setups
Let Me Know What You Think
If you’re already using FeelCraft, I’d love to hear how this update helps your workflow. And if you haven’t tried it yet — now’s a great time! Your support helps me continue building and refining the tool, and I’ve got more features coming soon.
Thanks for reading — happy devving!
Get the tool at : https://codingmojo.itch.io/feelcraft
Consider subscribing to this thread :)
I am a developer with 13 years experience in gaming industry, most of my experience is backend oriented but I really like to do front-end things on my spare time. Check my profile to see some of the tool I created.
I'm looking for teammates in order to do few game jams during this summer. Ideally, french speaking people but that's not mandatory. Developers, artists or game designers. Wanna build a relax and funny spirit, but still productive with a high end-result value.
You should have some portfolio to showcase.
Poke me if you are interested :)
Here’s a sneak peek: 1000 fully animated cars running at 60fps on my 2020 MacBook Air — all powered by the game feel tool I’ve been building. And yes, there’s still room for improvement… but that’s okay.
When working on personal projects, it’s surprisingly hard to stay in a production mindset. I catch myself over-polishing, chasing perfection, and delaying feedback — as if my personal value is tied to the quality of the work. Sound familiar ? Funny enough, I don’t struggle with this when delivering for clients. But something shifted this year: I realized I owe the same respect to my own time, budget, and roadmap.
That’s why I’m committing to releasing this tool on the Asset Store before June 15 — not when it's “perfect,” but when it's ready to grow through real-world use. How do you deal with perfectionism in your own projects?
Version 0.9 :
- Improved performances
- Fixed few bugs
- Improved CustomEditorWindows and CustomInspectors with Tooltips and quality of life changes
- Documentation
Hello there,
I'm working on a Unity Tool to helps integrate game feel in minutes, no rigging, no skinning, no programming required.
Here is a video presentation, I'm actually on v0.8, few bugs remaining to be fixed but it's soon ready for first release.
Version 0.8 :
- Custom Windows Editor
- Ability to add Transform Animations (rotation, scale, position)
- Ability to add Particles Animations
- Ability to edit animations in play mode and see the result updated in real time
- Ability to reuse an animation file over multiples prefabs
I plan to add features and improve on it over time.
Would be very pleased to read your thoughts about it :)
Cheers
Heya !
Senior developer with a strong backend expertise is looking for small freelance tasks, either front-end or backend. You can check my linkedin profile to see my previous experiences https://www.linkedin.com/in/thomaspradeilles/
Paid work only, but I'm open to small budgets if I can get fun from it ;)
2019, July 3 : Devlog #5
Going procedural, I met this good friend Perlin Noise. So I create this Layered Perlin Noise tool in order to generate terrains shapes of my taste. In this specific case, I'm looking for continental looking terrain shapes with larges plains and few mountains from time to time.
2019, June 11 : Devlog#4
I spent last few days working on sandbox optimisation in Unity. From draw calls to multi threading, I talk about the most impactful changes I made to go from 15FPS to more than 110FPS during the main game loop
What's new :
- Improved overall performances
- Added demo controlable character, movement validated on the grid (can't walk on water, can only climb 1 tile height at a time)
- Re-skinned devlogs, now in english
2019, May 28 : Devlog#3
I continue the hard work on the sandbox 3d grid.
My first task was to improve a bit the construction mode so I can build my zone faster. I then had to work on a lot of different optimisations detailled in the video in order to improve the loading and display of my map, a long fight for the FPS I did not yet completed fully :)
Hope you'll enjoy, your kind comments are much appreciated
Short Description
Coding Mojo is a tactical mmorpg inspired from games like Dofus, Eve Online, XCom and Wakfu.
Devlog History
2019, July 3
Going procedural, I met this good friend Perlin Noise. So I create this Layered Perlin Noise tool in order to generate terrains shapes of my taste. In this specific case, I'm looking for continental looking terrain shapes with larges plains and few mountains from time to time.
2019, June 11
I spent last few days working on sandbox optimisation in Unity. From draw calls to multi threading, I talk about the most impactful changes I made to go from 15FPS to more than 110FPS during the main game loop.
Hope you'll enjoy, your kind comments are much appreciated
2019, May 28
I continue the hard work on the sandbox 3d grid.
My first task was to improve a bit the construction mode so I can build my zone faster. I then had to work on a lot of different optimisations detailled in the video in order to improve the loading and display of my map, a long fight for the FPS I did not yet completed fully :)
Hope you'll enjoy, your kind comments are much appreciated
2019, May 7







