Skip to content

Instantly share code, notes, and snippets.

@TigerHix
Created July 19, 2023 11:22
Show Gist options
  • Save TigerHix/2dc58213defe400ddb280a8cc1e6334b to your computer and use it in GitHub Desktop.
Save TigerHix/2dc58213defe400ddb280a8cc1e6334b to your computer and use it in GitHub Desktop.
using Cysharp.Threading.Tasks;
using Warudo.Core;
using Warudo.Core.Attributes;
using Warudo.Core.Data;
using Warudo.Core.Graphs;
using Warudo.Core.Resource;
namespace Warudo.Plugins.Core.Nodes {
[NodeType(Id = "a103f1df-2747-4aaf-8e8c-dada981f9bfb", Title = "CHARACTER_ANIMATION_SOURCE", Category = "CATEGORY_LITERALS")]
public class LiteralCharacterAnimationSourceNode : Node {
[DataInput]
[AutoCompleteResource("CharacterAnimation")]
[PreviewGallery]
[Label("VALUE")]
public string Value;
[DataOutput]
[Label("OUTPUT")]
public string Output() {
return Value;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment