Skip to content

Instantly share code, notes, and snippets.

@botamochi6277
botamochi6277 / PIDController.cs
Last active May 20, 2024 04:52
Unity PID controller for position and rotation
using System.Collections;
using System.Collections.Generic;
// using Sirenix.OdinInspector;
using UnityEngine;
using UnityEngine.Serialization;
namespace BotaLab
{
/**
* @brief A Unity Component to control position and rotation with PID controller
@omgwtfgames
omgwtfgames / A set of Unity3D extension methods
Last active March 2, 2024 17:44
Some useful extension method for Unity3D
A collection of useful C# extension methods for the Unity engine.
@germs12
germs12 / .bash_profile
Created March 11, 2013 12:59
Mac OS X .bash_profile for my Retina Display Mac (2013)
export PATH=/usr/local/bin:~/bin:/usr/local/sbin:$PATH
# Source out a git sh file to get access to __git_ps1
source ~/.git-prompt.sh
# git commamands simplified
alias gst='git status'
alias gco='git checkout'
alias gci='git commit'
alias grb='git rebase'