utm_content=youtube_2026_godotunitydevsanimation
This video covers how to create animations and build UI in Godot, framed against the equivalent Unity workflows. We start with a moving ball animation, then build a screen-space UI with text, buttons, anchoring, and screen scaling.
For animation we add an AnimationPlayer node, Godot's combined equivalent of Unity's Animator component and animation clip, and walk through tracks vs Unity's property rows, keyframes, the fixed timeline length, D and S playback shortcuts, and interpolation modes (cubic gives you the smoothing Unity defaults to). We also cover auto-play-on-load so the animation runs without a script.
For UI we cover Godot's split between 2D, 3D, and Control nodes, why a CanvasLayer is the right starting point for a HUD on a 3D game, and how Label, Button, and other Control nodes work. We set up text with LabelSettings, anchor elements with Godot's anchor presets, wire up button signals like pressed (Godot's equivalent of OnClick), and finish with Stretch Mode in Project Settings so the UI scales with the screen.