Godot Communitygodot.hashnode.dev·Oct 10, 2024Online Visual Novel in Godot: Case Study on Sentou GakuenWhen you talk about visual novel games, you'd normally think of a static story-driven experience, often with branching paths and multiple endings. You may have hundreds of routes but ultimately designed for solo play. It is why some people consider t...Discuss·2 likesGame Development
Zacryonfancytree.hashnode.dev·Jun 30, 2024Implementing First-Person-View Movement in Godot using C++GitHub repository and specific commit corresponding to this blog post:https://github.com/Zacrain/a-fancy-tree commit hash: f1b6bd8. One important feature in my endeavour to create a fancy tree walking-simulator-like game experience is to be able to ...Discuss·36 readsfirst person view
Zacryonfancytree.hashnode.dev·Jun 24, 2024First (not so) fancy tree in a Godot sceneAfter making a really fancy donut in Blender, it's now time to put those newly learned beginner modeling skills to use and create a first tree object. I was aiming for something very simple and minimalistic, as my first priority was to learn and test...DiscussC++
Zacryonfancytree.hashnode.dev·Jun 24, 2024Upgrade C++ API to Godot 4.2Update on Hot-Reloading First of all: Hot-reloading is finally here! Yay! 🥳 With Godot 4.2 came that awesome feature which should speed things up if you want to use C++ as your main development language for your Godot project. For those who don't kn...DiscussGodot
Jacqueline Dalyjdbyteblog.hashnode.dev·Jun 4, 2024What I Learned from 30 Days of CodingIntroduction I recently completed my first 30-day coding challenge over on GitHub. I wanted to change careers, get into software development. While I already had some experience with coding from my previous education, I was out of practice and needed...Discuss·66 reads30 Days of Code
Sahaj Guptaitsahaj.hashnode.dev·Mar 23, 2024Rotate arrow in player.Now that we have our player working, let's add the arrow (trajectory) to player, and add Strech sound. We'll add arrow as sprite2d node in player node. Note: Make sure to add offset in arrow so that pivot of arrow remains in center of player but the ...DiscussGodot 4
Sahaj Guptaitsahaj.hashnode.dev·Mar 12, 2024Setting up player (Bird)In this read I am setting up player character for my Angry bird type game in godot. This is a part of Angry bird made in Godot 4 series. For Player I have made a new Node of type RigidBody2D and added Sprite2D with texture as "player" from assets fol...DiscussGodot 4
Sahaj Guptaitsahaj.hashnode.dev·Mar 10, 2024Setting up basic level | Angry bird in Godot 4In level I am just adding Background and water so that when player falls in water a splash sound come. To set up water I have created a new Scene with root node as Area2D node. Under which I have added 2 children: Sprite2D and CollisionShape2Din Spri...DiscussGodot
Caleb Doisevortexbasis.com·Dec 20, 2023Godot: Control Mouse With GamepadI've made a quick example showing how to control the mouse with a gamepad in Godot. The left stick controls the mouse and a configurable button can trigger a mouse click. The right stick will scroll a user control if there is a ScrollContainer under ...Discuss·408 readsGodot Engine
Caleb Doisevortexbasis.com·Dec 16, 2023Godot Post-Processing Kuwahara FilterThe Kuwahara filter is a well-known filter for adding a bit of stylized painterly effects to your renders. The latest version of Blender even includes a Kuwahara filter in its compositor. I'll leave more detailed descriptions of the Kuwahara filter t...Discuss·291 readsGodot ShadersGodot