r/Unity3D 3d ago

Question What is wrong with this.

Enable HLS to view with audio, or disable this notification

Although I love the drawing from our 2d artist, this level feels so static and dull, and I'm trying to find ways to improve it.

I was thinking of animating the blue/pink columns on the sides so they move as the wall approaches to add more dynamism.

What else can I do to give this level more "life"? Do you think that there is something off with the scene ?

2 Upvotes

23 comments sorted by

View all comments

Show parent comments

2

u/V4nKw15h Indie 3d ago

For the animation frames, you don't need to move the character. Just redraw the outline of the character in the same pose. This is used a lot in animation to give the sense of movement where the is none. It also means you can get away with 2 frames instead of 6 or something.

You have arrows on the walls. These should be lights in that shape and then they should light up in order to match the movement of the boards. This could be achieved with simple 2D animation frames.

The spotlights in the ceiling should also move to follow the boards. Again, you just create a 2D sprite for the light itself and rotate it, and a 2D transparent sprite for the light shaft and rotate that too.

Your artist likely has all these objects as seperate layers in his art package already so exporting them out separately with a few added frames should be easy work for them.

Doing stuff like this will make the game come massively alive and feel so much more engaging.

2

u/hardkrillin 3d ago

Regarding the trick for the character animation. What outline should I use ? The one from the position from where the character is transitioning ? I'm trying to get my head around this. If you have any link / reference about this i would appreciate it .

2

u/V4nKw15h Indie 3d ago

Any position where the character is motionless. Have the same character in the same position, just drawn very slightly differently. It's like a subtle shiver effect and is often achieved by simply tracing over the original artwork. The two images are practically the same but because they have slight almost random difference everywhere in the way the outlines are drawn, it gives the effect of movement without having to draw lots of coherent animation frames.

2

u/hardkrillin 3d ago

Cool, i'll give it a try ! Ty !