我是UniRx的新手,并且我已经使用Rxswift已有几个月了。我正在寻找用参数执行命令的UniRx实现。如果ReactiveCommand没有参数,我可以这样做...
class Player {
ReactiveCommand plainCommand = new ReactiveCommand();
ReactiveCommand<string> argsCommand = new ReactiveCommand<string>();
void Start() {
plainCommand.Subscribe(_ => Debug.Log("Void parameter"));
plainCommand.BindTo(button);
}
}
我似乎找不到找到将按钮绑定到argsCommand
并添加自定义参数的方法。
感谢您的提前帮助。