Skip to content

Instantly share code, notes, and snippets.

View daltonbr's full-sized avatar
🎮
Brighton - UK

Dalton Lima daltonbr

🎮
Brighton - UK
View GitHub Profile
@daltonbr
daltonbr / PageInspector.cs
Created March 12, 2019 10:55
A quick snippet of a Unity Custom Editor
using UnityEngine;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
[CustomEditor(typeof(Page))]
public class PageInspector : Editor {
public Material wordMat = null;
@daltonbr
daltonbr / shell.sh
Last active November 6, 2020 04:27
CLI 'youtube-dl' examples, how to easily download youtube videos
# brew install youtube-dl (on mac)
# https://github.com/rg3/youtube-dl
# alias
alias cd..="cd .."
alias sync="adb push --sync ~/Movies/*.mp4 mnt/sdcard/Movies/"
alias yt="youtube-dl -o '~/Movies/[%(release_date)s]-[%(id)s].%(title)s.%(ext)s' --restrict-filenames"
alias ytplaylist="youtube-dl -o '~/Movies/%(uploader)s/%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s'"
alias mp3="youtube-dl --extract-audio --format bestaudio --audio-format mp3 --prefer-ffmpeg --audio-quality 160K --output '%(title)s.%(ext)s'"
@daltonbr
daltonbr / osxswitchplatform.bash
Created January 22, 2019 09:12
A bash script to switch Unity builds, this one is for OSX
#!/bin/bash
# https://bonusxp.com/2014/09/fast-platform-switching-in-unity3d/
# $ brew install pidof
# $ chmod +x osxswitchplatform.bash
# ./osxswitchplatform ios
# ./osxswitchplatform android
# Make sure Unity isn't running while we switch directories out from under it.
if [ "$(pidof Unity)" ]; then
@daltonbr
daltonbr / AiInput.cs
Created October 14, 2018 02:57
SOLID Principles - Dependency Injection (not dependency inversion)
using UnityEngine;
public class AiInput : IShipInput
{
public float Rotation { get; private set;}
public float Thrust { get; private set;}
public void ReadInput()
{
Rotation = Random.Range(-1f, 1f);
@daltonbr
daltonbr / AttackProcessor.cs
Created October 14, 2018 01:17
SOLID Code - Interface Segregation Principle
public class AttackProcessor
{
public void ProcessMelee(IHaveStats attacker, IHaveHealth target)
{
int amount = CalculateAttackAmount(attacker);
ProcessAttack(target, amount);
}
public void CalculateAttackAmount(IHaveStats attacker)
{
@daltonbr
daltonbr / Input.cs
Last active October 14, 2018 00:42
A decoupled Input system from Unity / C#
using System;
using UnityEngine;
public class Input : MonoBehaviour
{
public float Horizontal { get; private set; }
public float Vertical { get; private set; }
public bool FireWeapons { get; private set; }
public event Action OnFire = delegate { };
@daltonbr
daltonbr / InventoryItemDisplay.cs
Last active December 13, 2017 03:28
A basic structure of a Delegate in C#
public class InventoryItemDisplay
{
public delegate void InventoryItemDisplayDelegate(InventoryItem item); // the signature of this delegate <void> <param item>
public static event InventoryItemDisplayDelegate onClick; // the event
public void Click()
{
Debug.Log("Clicked " + item.displayName);
if (onClick != null) // Important null check - if no one subscribes to this event, then it crashes.
{