This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #git | |
| alias _gc="git commit -a -m" | |
| alias _gf="git pull" | |
| alias _gp="git push" | |
| alias _gpt="git push --tags" | |
| alias _gs="git status" | |
| alias _ga="git add" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pacman -Sy \ | |
| mingw32/mingw-w64-i686-SDL2 \ | |
| mingw32/mingw-w64-i686-SDL2_gfx \ | |
| mingw32/mingw-w64-i686-SDL2_image \ | |
| mingw32/mingw-w64-i686-SDL2_mixer \ | |
| mingw32/mingw-w64-i686-SDL2_net \ | |
| mingw32/mingw-w64-i686-SDL2_ttf \ | |
| mingw32/mingw-w64-i686-smpeg2 \ | |
| mingw64/mingw-w64-x86_64-SDL2 \ | |
| mingw64/mingw-w64-x86_64-SDL2_gfx \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is the code from this video: https://www.youtube.com/watch?v=tksVdsr02yQ | |
| extends Node3D | |
| @onready var Ball = $Ball | |
| @onready var Car = $Car | |
| @onready var RightWheel = $"Car/Model/wheel-front-right" | |
| @onready var LeftWheel = $"Car/Model/wheel-front-left" | |
| @onready var CarBody = $Car/Model/body | |
| @onready var DriftTimer = $DriftTimer |
OlderNewer