Fungus 文档地址
首页 ·snozbot/fungus 维基 — Home · snozbot/fungus Wiki
简单入门:
【Unity 实用插件篇】 | 使用Fungus插件制作一个对话系统,简单好学易上手-腾讯云开发者社区-腾讯云
Fungus通信方式
Fungus 是一个基于 Unity 的叙事工具,它提供了强大的可视化编程功能,但有时你需要将 Fungus 与自定义的 C# 代码结合使用,以实现更复杂的游戏逻辑。以下是 Fungus 与代码通信的几种常见方式:
1. 通过 Message 通信
Fungus 的 Message
是一种事件机制,可以在代码中触发 Fungus 的 Block 执行。
步骤:
- 在 Fungus Flowchart 中创建一个 Block,并添加
Message
命令,设置 Message
名称(例如 "StartDialogue"
)。
- 在 C# 脚本中调用
Flowchart.SendMessage
来触发该 Message
。
示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| using UnityEngine; using Fungus;
public class TriggerFungusMessage : MonoBehaviour { public Flowchart flowchart;
void Start() { if (flowchart != null) { flowchart.SendMessage("StartDialogue"); } } }
|
2. 通过 Variable 通信
Fungus 的 Variable
可以存储数据,你可以在代码中读取或修改这些变量。
步骤:
- 在 Fungus Flowchart 中创建一个变量(例如
Integer
类型的 PlayerScore
)。
- 在 C# 脚本中使用
Flowchart.SetVariable
和 Flowchart.GetVariable
来访问和修改变量。
示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| using UnityEngine; using Fungus;
public class SetFungusVariable : MonoBehaviour { public Flowchart flowchart;
void Start() { if (flowchart != null) { flowchart.SetIntegerVariable("PlayerScore", 100);
int score = flowchart.GetIntegerVariable("PlayerScore"); Debug.Log("Player Score: " + score); } } }
|
3. 通过 Custom Command 通信
如果你需要在 Fungus 中执行自定义的逻辑,可以创建自定义的 Fungus 命令。
步骤:
- 创建一个继承自
Fungus.Command
的 C# 脚本。
- 实现自定义逻辑。
- 在 Fungus Flowchart 中使用该命令。
示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| using UnityEngine; using Fungus;
[CommandInfo("Custom", "Print Message", "Prints a custom message to the console")] public class PrintMessageCommand : Command { public string message = "Hello, Fungus!";
public override void OnEnter() { Debug.Log(message); Continue(); } }
|
在 Fungus Flowchart 中,你可以找到 Print Message
命令并使用它。
4. 通过 Event Handler 通信
Fungus 提供了事件系统,你可以通过代码监听 Fungus 的事件。
示例:
监听 Fungus 的 BlockStart
事件。
示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| using UnityEngine; using Fungus;
public class FungusEventListener : MonoBehaviour { void OnEnable() { BlockSignals.OnBlockStart += OnBlockStart; }
void OnDisable() { BlockSignals.OnBlockStart -= OnBlockStart; }
void OnBlockStart(Block block) { Debug.Log("Block started: " + block.BlockName); } }
|
5. 通过 Flowchart 方法调用
Fungus 的 Flowchart
组件提供了许多方法,可以直接在代码中调用。
常用方法:
ExecuteBlock(string blockName)
:执行指定的 Block。
StopAllBlocks()
:停止所有正在执行的 Block。
GetVariable<T>(string variableName)
:获取指定变量。
示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| using UnityEngine; using Fungus;
public class ControlFungusFlowchart : MonoBehaviour { public Flowchart flowchart;
void Start() { if (flowchart != null) { flowchart.ExecuteBlock("MyBlock");
flowchart.StopAllBlocks(); } } }
|
6. 通过 Fungus 调用外部代码
Fungus 的 Call Method
命令可以直接调用 C# 脚本中的方法。
步骤:
- 在 C# 脚本中定义一个公共方法。
- 在 Fungus Flowchart 中使用
Call Method
命令调用该方法。
示例代码:
1 2 3 4 5 6 7 8 9
| using UnityEngine;
public class MyScript : MonoBehaviour { public void MyMethod() { Debug.Log("MyMethod called from Fungus!"); } }
|
在 Fungus Flowchart 中:
- 添加
Call Method
命令。
- 选择
MyScript
组件。
- 选择
MyMethod
方法。
7. 通过 Fungus 的 Lua 脚本
Fungus 支持 Lua 脚本,你可以在 Lua 脚本中调用 C# 方法。
示例:
在 Lua 脚本中调用 C# 方法。
示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| using UnityEngine; using Fungus;
public class LuaIntegration : MonoBehaviour { public Flowchart flowchart;
void Start() { if (flowchart != null) { flowchart.ExecuteLua("myMethod = function() UnityEngine.Debug.Log('Hello from Lua!') end");
flowchart.ExecuteLua("myMethod()"); } } }
|
总结
Fungus 提供了多种与代码通信的方式,包括:
- Message:触发 Fungus Block。
- Variable:读取和修改 Fungus 变量。
- Custom Command:创建自定义命令。
- Event Handler:监听 Fungus 事件。
- Flowchart 方法调用:直接控制 Flowchart。
- Call Method:在 Fungus 中调用外部代码。
- Lua 脚本:通过 Lua 脚本与代码交互。
根据你的需求选择合适的方式,将 Fungus 与代码无缝结合,实现更复杂的游戏逻辑和叙事效果!
Fungus Command脚本扩展
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| using UnityEngine; using Fungus;
namespace ZyScripts.FungusExtend { [CommandInfo("ZyScripts", "Set Mouse Cursor Visible", "设置鼠标的显示/隐藏")] public class SetMouseCursorVisible : Command { [Header("Cursor.visible的值")] [SerializeField] private BooleanData cursorVisible;
#region Public members public override void OnEnter() { Cursor.visible = cursorVisible; Continue(); } public override string GetSummary() { if (cursorVisible.Value) return "显示鼠标,Cursor.visible = " + cursorVisible.Value; else return "隐藏鼠标,Cursor.visible = " + cursorVisible.Value; } public override Color GetButtonColor() { return new Color32(150, 182, 255, 255); } public bool MayCallBlock(Block block){ return block == whichBlock.block; }
#endregion } }
|
Unity 对话插件Fungus脚本扩展——基础(继承Command)_fungus动态生成对话-CSDN博客
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Serialization;
namespace Fungus { [CommandInfo("Custom", "Execute Reference Block", "Receive an object of type Block Reference and execute it.")] public class executeReferenceBlock : Command, IBlockCaller {
[Tooltip("the block")] [SerializeField] protected BlockReference whichBlock;
public override void OnEnter(){ if(whichBlock.block != null){ whichBlock.Execute(); } Continue(); } public override void GetConnectedBlocks(ref List<Block> connectedBlocks) { if (whichBlock.block != null) { connectedBlocks.Add(whichBlock.block); } } public bool MayCallBlock(Block block){ return block == whichBlock.block; } } }
|
Unity插件Fungus自定义Command_fungus unity-CSDN博客