This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]+)@*.*"); |
NewerOlder