Class: Miyako::Yuki::Command
Overview
コマンド構造体
- body
-
コマンドの名称(移動する、調べるなど、アイコンなどの画像も可)
- body_selected
-
選択時コマンドの名称(移動する、調べるなど、アイコンなどの画像も可)(省略時は、bodyと同一)
- body_disable
-
選択不可時コマンドの名称(移動する、調べるなど、アイコンなどの画像も可)(省略時は、bodyと同一)
- enabe
-
コマンド選択の時はtrue、選択不可の時はfalseを設定
- condition
-
表示条件(ブロック)。評価の結果、trueのときのみ表示
- result
-
選択結果(移動先シーンクラス名、シナリオ(メソッド)名他のオブジェクト)
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#body_disable ⇒ Object
Returns the value of attribute body_disable.
-
#body_selected ⇒ Object
Returns the value of attribute body_selected.
-
#condition ⇒ Object
Returns the value of attribute condition.
-
#enable ⇒ Object
Returns the value of attribute enable.
-
#result ⇒ Object
Returns the value of attribute result.
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body
50 51 52 |
# File 'lib/Miyako/API/yuki.rb', line 50 def body @body end |
#body_disable ⇒ Object
Returns the value of attribute body_disable
50 51 52 |
# File 'lib/Miyako/API/yuki.rb', line 50 def body_disable @body_disable end |
#body_selected ⇒ Object
Returns the value of attribute body_selected
50 51 52 |
# File 'lib/Miyako/API/yuki.rb', line 50 def body_selected @body_selected end |
#condition ⇒ Object
Returns the value of attribute condition
50 51 52 |
# File 'lib/Miyako/API/yuki.rb', line 50 def condition @condition end |
#enable ⇒ Object
Returns the value of attribute enable
50 51 52 |
# File 'lib/Miyako/API/yuki.rb', line 50 def enable @enable end |
#result ⇒ Object
Returns the value of attribute result
50 51 52 |
# File 'lib/Miyako/API/yuki.rb', line 50 def result @result end |