Input SystemというAPIのドキュメントを読んでいます。
入力の設定を行う時に以下のような構文を使うようなのですが、この.Withという表現は何なんでしょうか。
やりたいことは分かっているのですが、元の構文が分からずモヤモヤしております。
質問の仕方が不適切でしたら申し訳ございません。
C#
1// Create free-standing Actions. 2var lookAction = new InputAction("look", binding: "<Gamepad>/leftStick"); 3var moveAction = new InputAction("move", binding: "<Gamepad>/rightStick"); 4 5lookAction.AddBinding("<Mouse>/delta"); 6moveAction.AddCompositeBinding("Dpad") 7 .With("Up", "<Keyboard>/w") 8 .With("Down", "<Keyboard>/s") 9 .With("Left", "<Keyboard>/a") 10 .With("Right", "<Keyboard>/d");
メソッドです。ドキュメントに必ず書いてありますから自分で読んでください。
回答1件
あなたの回答
tips
プレビュー