Skip to content

Instantly share code, notes, and snippets.

View reneabreu's full-sized avatar
🏠
Working from home

René Abreu reneabreu

🏠
Working from home
View GitHub Profile
@reneabreu
reneabreu / Keybase.md
Last active July 30, 2018 15:15
Keybase proof

Keybase proof

I hereby claim:

  • I am reneabreu on github.
  • I am reneabreu (https://keybase.io/reneabreu) on keybase.
  • I have a public key whose fingerprint is 7D73 A4C9 0B8C 1CB3 3F6D 9F90 04C1 C309 3535 1AEB

To claim this, I am signing this object:

@reneabreu
reneabreu / AutoHideSplashScreen.cs
Last active December 16, 2022 12:17
I always forget to check if Unity's splashscreen is activated, so here is a Pre-Process Build to check if i'm using Unity Plus/Pro and deactivate it for me.
#if UNITY_EDITOR
using UnityEditor;
using UnityEngine;
using UnityEditor.Build;
#if UNITY_2017
class AutoHideSplashScreen : IPreprocessBuild
{
public int callbackOrder { get { return 0; } }
public void OnPreprocessBuild(BuildTarget target, string path) {