Problem I was inspired by this to write a graphic snow animation in Java/Processing. It works great, but it has […]
Tag: animation
Optimizing rendering with a lot of transformations and save/restore
Problem I have implemented a renderer for shapes described with a L-System grammar. Implementation of that is not important. Basically […]
Unity animations code [closed]
Problem Closed. This question is off-topic. It is not currently accepting answers. Authorship of code: Since Code Review is a […]
React + jQuery Tab Scroller
Problem A simple tab scroller built with React.js that utilizes jQuery for the animation. Questions I’ve only just started learning […]
Processing.js particle system
Problem After about half an hour of fooling around with Processing.js/JavaScript, I got this fairly decent particle system set up: […]
Game sprite animation
Problem This code animates my main game sprite by increasing the animation frame. First I check if the character is […]
Parallax animation, running well on Chrome but slow on Safari
Problem I have the following script to create a parallax effect on the page using request animation frame, it runs […]
Simple elevator-like animation android
Problem private void moveViewToScreenCenter(final ImageView img, int x) { DisplayMetrics dm = new DisplayMetrics(); this.getWindowManager().getDefaultDisplay().getMetrics(dm); img.animate() .translationX(0) .withEndAction(new Runnable() { […]
React component to animate planets on a canvas
Problem I wrote some JavaScript to generate some graphics on a canvas, on a regular HTML page. I now want […]
Using visual themes in a game
Problem In my small application, I need to use a variety of visual themes. The simplified structure of this class: […]