Skip to content

Instantly share code, notes, and snippets.

View cart's full-sized avatar

Carter Anderson cart

View GitHub Profile
@cart
cart / NodeExtensions.cs
Created February 1, 2018 06:31
A collection of C# Node extensions for Godot
using Godot;
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace HighHat.Scene.Nodes
{
public static class NodeExtensions
{
private static Regex _nameRegex = new Regex("@*(?<Name>[\\w|\\d]+)@*.*");