Deniz TrakaforDTWorldzdtworldz.hashnode.dev·Nov 4, 2024Crafting System Now Live: Introducing Version 1.0.3 of the 2D RPG Project Accelerator!Hello fellow developers and RPG enthusiasts! I'm excited to announce that version 1.0.3 of the 2D RPG Project Accelerator has officially been released, and it includes a major new feature: the Crafting System. This update brings an immersive crafting...Discuss·32 reads2D RPG Accelerator2d
Deniz TrakaforDTWorldzdtworldz.hashnode.dev·Oct 14, 20242D RPG Accelerator : Release 1.0.2This includes bunch of new features to the project. New weapon types including ranged (yes Bows!), looting enemies and cool attack/damage effects to give more satisfaction from the hits! What do we have in table ? Yes, before we start explaining how ...Discuss·45 reads2D RPG AcceleratorPixels Art
Deniz TrakaforDTWorldzdtworldz.hashnode.dev·Oct 4, 20242D RPG Accelerator : Chests / Containers UpdateIn many games, chests serve as important game mechanics for storing items, rewarding players, and adding a layer of interactivity. Designing a chest/container system in Unity can be straightforward if when we already have an item system in place ofco...Discuss·50 reads2D RPG Acceleratorinventory management
Samuel Msamuel67m.hashnode.dev·Sep 29, 2024From 2D to 3D: How GIS and 3D scenes are changing community planningWith the acceleration of urbanization, the planning and development of communities as the basic units of cities have become increasingly important. The application of GIS (Geographic Information System) and 3D scene technology provides new perspectiv...Discusscommunity
Elijah Browndevsdaddy.hashnode.dev·Aug 25, 20242D Free Noir Game Characters - 4K Layered PSDWhat Inside? 26+ high quality and stylized 2D characters for your games packed as Layered PSD files. List of Characters Inside: Timur (Old Man); Soldiers (5 Variants); Rabbish Man (2 Variants); Egorov (Young Man); Sashulin (Young Man); Katrin ...Discuss·10 likesAssetsunity
Christine Coomanschristinecdev.hashnode.dev·Aug 5, 2024Godot 2D & 3D Prototype TemplatesI have created templates for my Godot 2D and 3D projects on YouTube and KoFi. These templates are designed for prototyping and developing systems in Godot. They make it easier for us because we no longer have to build everything from scratch! 😊 The ...DiscussGodot
Chetan Dattachetan77.hashnode.dev·Jul 21, 2024240. Search a 2D Matrix IIProblem Write an efficient algorithm that searches for a value target in an m x n integer matrix matrix. This matrix has the following properties: Integers in each row are sorted in ascending from left to right. Integers in each column are sorted i...DiscussLeetcodesearch-a-2d-matrix-ii
Tom Grzembketommygamedev.hashnode.dev·Apr 16, 2024[Unity] 2D Sprite FlippingI searched for an alternative to flipping sprites in a sidescroller environment and wasn't that happy with my findings. To flip the sprite, my script uses the x scale to blend the character's start x-axis to its negative counterpart in the context of...Discuss·124 reads2D animation
engineer indonesiaengineerindo.hashnode.dev·Mar 5, 2024How to Create Spring using Helix and Sweep Features in ZWCADIn this zwcad indonesia tutorial I will discuss how to use the helix feature to create a spring. First of all, change the view by typing command: vpoint then enter, type 1,1,1, enter image source : https://zwcad.ardatadesign.com/blog/wp-content/uploa...Discusszwcad
Gulshan Kumarperfinsights.hashnode.dev·Dec 24, 2023Create a function that checks if a given path, represented by 'N', 'S', 'E', 'W', crosses itself at any point on a 2D plane.Q - Given a string path, where path[i] = 'N', 'S', 'E' or 'W', each representing moving one unit north, south, east, or west, respectively. You start at the origin (0, 0) on a 2D plane and walk on the path specified by path. Return true if the path c...DiscussJava SolutionJava