Skip to content

Instantly share code, notes, and snippets.

View andreiagmu's full-sized avatar
🎮
Developing NekoSuki! ~ Kitty Love Adventure 🐈❤️

Andrei Müller (Andy Miira) andreiagmu

🎮
Developing NekoSuki! ~ Kitty Love Adventure 🐈❤️
View GitHub Profile
@andreiagmu
andreiagmu / SunnyDiscord.theme.css
Created March 11, 2024 19:02 — forked from TheSunCat/DisblockOrigin.theme.css
Hide all Nitro & Boost upsells in Discord!
/**
* @name Adblock
* @author TheSunCat and contributors
* @description Hide all Nitro & Boost upsells on Discord!
* @source https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906
*/
/* ------------------ */
/* Hide Nitro upsells */
/* ------------------ */
@andreiagmu
andreiagmu / showPolygon2Dcollider.cs
Created December 30, 2023 19:02 — forked from allfake/showPolygon2Dcollider.cs
Show 2D Polygon Collider as Gizmo, also in Edit Mode (Not support rotation)
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
[ExecuteInEditMode]
public class VisibleCollider : MonoBehaviour {
public bool showLine = true;
public Color lineColor = Color.blue;
@andreiagmu
andreiagmu / showedgecollider.cs
Created December 30, 2023 19:02 — forked from adekbadek/showedgecollider.cs
Show 2D Edge Collider as Gizmo, also in Edit Mode
using UnityEngine;
using System.Collections;
[ExecuteInEditMode]
public class visibleCollider : MonoBehaviour {
// The Collider itself
private EdgeCollider2D thisCollider;
// array of collider points
private Vector2[] points;