Skip to content

Instantly share code, notes, and snippets.

View kvbc's full-sized avatar
🐄
cowding

Matt kvbc

🐄
cowding
View GitHub Profile
@maxtruxa
maxtruxa / Antonyms.md
Last active June 18, 2024 18:39
A list of common terms used in programming and their respective antonyms.

Antonym List

Note: The table headings (positive/negative) are not necessarily meaningful.

Positive Negative
acquire release
add remove (e.g. an item), subtract (arithmetic)
advance retreat
allocate deallocate (correct), free (common)
allow deny
@fcingolani
fcingolani / AStar2D Visualizer for Godot.md
Last active July 17, 2022 15:08
AStar2D Visualizer for Godot
  1. Create a Node2D.
  2. Attach AStart2DVisualizer.gd to it.
  3. Somewhere in your code pass your AStar2D instance to its .visualize(astar) method, i.e.: get_node(path_to_your_visualizer_node).visualize(astar)
  4. Then run your game and you should see something like this:

screenshot

:: Save this as SteamTrackingFix.bat and place it in your Godot folder.
:: The name doesn't really matter, but you may need to enable viewing file extensions in Windows to save it as a batch file.
:: Run this again if Godot updates and steam tracking stops working.
@echo off
echo -----
echo Don't forget to add '/K godot.exe' to your Steam Godot Launch Options!
echo -----
:: BatchGotAdmin
:-------------------------------------
@Meshiest
Meshiest / godot multiplayer.md
Last active July 10, 2024 03:47
overview of how I understand godot multiplayer

Godot 4 Scene Multiplayer

I'm too lazy to write this as official documentation so I'm transcribing my experiences here for reference.

This is high level and does not cover how to setup your peer, only how to use the API itself.

This is not a tutorial.

If you are just getting started, this tutorial by DevLogLogan is worth watching.