Jon Topielski
Jon Topielski
  • 24
  • 453 866
How to make a Scrolling Background in Godot 4
Learn how to quickly make a scrolling, repeating background texture in Godot 4 using a shader.
Code: github.com/jontopielski/Scrolling-Background
Переглядів: 7 486

Відео

Thwack Gameplay Trailer
Переглядів 4,7 тис.Рік тому
Get the game: jontopielski.itch.io/thwack
Feather Park: Behind the 'Scenes'
Переглядів 2,6 тис.Рік тому
A high level overview of some of the features that went into the making of Feather Park. Game link: jontopielski.itch.io/feather-park Stacked sprite tutorial: ua-cam.com/video/_Z5eg9UvLRw/v-deo.html&ab_channel=JonTopielski Alphons6 palettes: lospec.com/max-mandrych Shoutout to Mellorine who composed the music for the game! 00:00 - Stacked Sprites 01:04 - Color Palette 02:05 - Leaves 03:24 - Min...
Jon Topielski 2022 Games Reel
Переглядів 1,3 тис.Рік тому
The games I worked on in 2022! All made using the Godot engine. Echo Chamber: jontopielski.itch.io/echo-chamber Hearts Ablaze: jontopielski.itch.io/hearts-ablaze Chloroblast: scribblerim.itch.io/chloroblast Cave Buster: jontopielski.itch.io/cave-buster Flipjack: prifurin.itch.io/flipjack Feather Park: jontopielski.itch.io/feather-park Thwack: jontopielski.itch.io/thwack
How to create a Custom Mouse Cursor in Godot
Переглядів 4,9 тис.2 роки тому
Learn how to implement a custom mouse cursor in Godot. github.com/jontopielski/cursor-tutorial 00:00 - Intro 00:25 - Settings 01:00 - "Software" Mouse 01:27 - Script 02:53 - Pixel Snap 03:18 - Mouse Delay 04:08 - "Hardware" Mouse 04:54 - Window Resolution 06:18 - Scale Multiple 07:25 - Default Cursor 08:02 - Scale It 10:02 - Off By One 10:18 - Outro
How to create a Turn-based Combat System in Godot
Переглядів 77 тис.2 роки тому
Learn how to create a Turn-based Combat system in Godot. Source code: github.com/jontopielski/Turn-Based-Combat Art Assets - limezu.itch.io/fantasy-battlers Background - opengameart.org/content/backgrounds-3 Fonts - www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=234 and www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=195 00:00 - Intro 00:15 - Scene Setup 00:44 - Health Bar 03:13 - Panels...
10 Things I Wish I Knew Sooner with Godot
Переглядів 64 тис.2 роки тому
Some beginner friendly tips to help you with Godot. 00:00 - 00:35 Importing pixel art sprites 00:35 - 01:37 Spritesheet in control nodes 01:37 - 02:27 Size flags 02:27 - 02:57 Corner radius 02:57 - 03:51 Pixely look 03:51 - 05:43 Autoloading 05:43 - 06:19 get_tree().change_scene() 06:19 - 07:21 Cubic interpolation 07:21 - 08:16 Modulate 08:16 - 09:06 Color shader 09:06 - 10:10 Default fonts 10:...
Better SFX with Pitch Randomization in Godot
Переглядів 3,9 тис.2 роки тому
Use this simple trick to add more variety to your sound effects. Jump SFX: github.com/jontopielski/Pitch-Randomization/blob/master/audio/Jump.wav Source Code: github.com/jontopielski/Pitch-Randomization Asset Pack Used: pixelfrog-assets.itch.io/pixel-adventure-1 00:00 Intro 00:38 Create Scene 01:23 Script 02:56 Pitch Reroll 04:28 Outro
Stacked Sprites in Godot
Переглядів 19 тис.3 роки тому
Learn how to create stacked sprites in Godot to create a "fake 3d" look. To create sliced sprites, you can use Goxel or MagicaVoxel to create a voxel and then use the "export slices" option. Code: github.com/jontopielski/sprite-stacking-tutorial Car Sprite: github.com/jontopielski/sprite-stacking-tutorial/blob/master/CarSlices.png Car Voxel: github.com/mikelovesrobots/mmmm/blob/master/vox/veh_c...
How to create a Windows 95 interface in Godot
Переглядів 4,2 тис.3 роки тому
Learn to make a Windows 95 interface in Godot. Code: github.com/jontopielski/windows-95-tutorial 00:00 - Intro 00:05 - Scene Setup 00:17 - Taskbar 00:30 - Start Button 01:30 - Divider 02:04 - Time 02:54 - Window 05:04 - Shader 06:47 - Outro
How to create a Game Boy Shader in Godot in 2 minutes
Переглядів 4,5 тис.3 роки тому
Give your games a retro Game Boy aesthetic. Shader: raw.githubusercontent.com/jontopielski/gameboy-shader/master/GameBoy.shader Code: github.com/jontopielski/gameboy-shader 00:00 - Intro 00:10 - Explanation 00:39 - Scene Setup 00:51 - Shader Code 02:12 - Result
How to Move and Animate a 2D Sprite using AnimationTree in Godot
Переглядів 108 тис.3 роки тому
Learn how to move and animate a top down 2d sprite in Godot. I go over basic physics movement, AnimationPlayer, and AnimationTree. Spritesheet: raw.githubusercontent.com/jontopielski/Top-Down-Sprite-Tutorial/master/player/PlayerSpriteSheet.png Code: github.com/jontopielski/Top-Down-Sprite-Tutorial 00:00 - Intro 00:07 - Scene Setup 00:45 - Movement Code 01:44 - Fix Movement 02:11 - AnimationPlay...
How to make a Simple RPG Textbox in Godot
Переглядів 44 тис.3 роки тому
Learn how to make a textbox in Godot. *UPDATE* - at 06:24 connect signal `tween_completed` NOT `tween_all_completed()` AND at 10:09 use `$Tween.remove_all()` instead of `$Tween.stop_all()` code: github.com/jontopielski/rpg-textbox-tutorial
Picking a Game Resolution
Переглядів 25 тис.3 роки тому
Things to think about when picking your game's resolution. Mostly from my personal experience.
How to make a Wavy Text shader in Godot in under 3 minutes
Переглядів 7 тис.3 роки тому
Learn how to make wavy text in Godot. Here's the shader code used in the tutorial: shader_type canvas_item; uniform float height = 3.0; uniform float frequency = 20.0; uniform float speed = 3.0; void vertex() { VERTEX.y = height * sin((frequency * UV.x) (speed * TIME)); }
Cats on Mars OST
Переглядів 1,4 тис.3 роки тому
Cats on Mars OST
Make an Earthbound Shader in Godot in 5 minutes
Переглядів 6 тис.3 роки тому
Make an Earthbound Shader in Godot in 5 minutes
Mafgar Game Music Compilation
Переглядів 2923 роки тому
Mafgar Game Music Compilation
Spinny Discs Gameplay
Переглядів 7063 роки тому
Spinny Discs Gameplay
How to fade transition between scenes in Godot in 5 minutes
Переглядів 27 тис.3 роки тому
How to fade transition between scenes in Godot in 5 minutes
How to make a Simple Menu in Godot in 10 minutes
Переглядів 40 тис.4 роки тому
How to make a Simple Menu in Godot in 10 minutes
This Call May Be Recorded Mouse-Only% Speedrun 5m8s
Переглядів 2884 роки тому
This Call May Be Recorded Mouse-Only% Speedrun 5m8s
Worm Fight from A Midclubber Night's Dream
Переглядів 3984 роки тому
Worm Fight from A Midclubber Night's Dream
Portal Bot Gameplay
Переглядів 6274 роки тому
Portal Bot Gameplay