网站首页 站内搜索

搜索结果

查询Tags标签: TestEvent,共有 3条记录
  • C# 脚本与Unity Visual Scripting 交互,第一步(使用C# 脚本触发Script Graph的事件)(Custom Scripting Event)

    写在前面 感谢Unity 川哥的帮助,解决了单独调用GameObject的需求首先 需要在Unity 中创建一个自定义事件脚本(注释非常重要)using System.Collections; using System.Collections.Generic; using Unity.VisualScripting; using UnityEngine;/// <summary> /// Uni…

    2022/9/13 1:23:14 人评论 次浏览
  • C# 事件简单示例

    1 using System;2 using System.Reflection;3 4 namespace ConsoleApp15 {6 class Program7 {8 // 自定义委托9 public delegate void TestHandler(string msg); 10 // 使用自定义委托定义事件 11 public static event TestHandl…

    2021/8/27 11:06:12 人评论 次浏览
  • C# 事件简单示例

    1 using System;2 using System.Reflection;3 4 namespace ConsoleApp15 {6 class Program7 {8 // 自定义委托9 public delegate void TestHandler(string msg); 10 // 使用自定义委托定义事件 11 public static event TestHandl…

    2021/8/27 11:06:12 人评论 次浏览
扫一扫关注最新编程教程