Skip to content

Instantly share code, notes, and snippets.

View Invertex's full-sized avatar
πŸ‘οΈβ€πŸ—¨οΈ
Doing too many things at once

Invertex Invertex

πŸ‘οΈβ€πŸ—¨οΈ
Doing too many things at once
View GitHub Profile
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
/// <summary>
/// A simple free camera to be added to a Unity game object.
///
/// Keys:
@Invertex
Invertex / EditorIconTexture.gd
Created April 26, 2025 02:12 — forked from williamd1k0/EditorIconTexture.gd
Helper Texture class to use Godot Editor icons in plugins, such as main screen plugins.
@tool
class_name EditorIconTexture
extends AtlasTexture
var icon :String:
set(val):
icon = val
_update_icon.call_deferred()
func _init():