Class: Miyako::InitiativeYuki::Command

Inherits:
Struct
  • Object
show all
Defined in:
lib/Miyako/API/i_yuki.rb

Overview

コマンド構造体

body

コマンドの名称(移動する、調べるなど、アイコンなどの画像も可)

body_selected

選択時コマンドの名称(移動する、調べるなど、アイコンなどの画像も可)(省略時は、bodyと同一)

condition

表示条件(ブロック)。評価の結果、trueのときのみ表示

result

選択結果(移動先シーンクラス名、シナリオ(メソッド)名他のオブジェクト)

body_disable

選択不可時コマンドの名称(移動する、調べるなど、アイコンなどの画像も可)(省略時は、bodyと同一)

enabe

コマンド選択の時はtrue、選択不可の時はfalseを設定

Instance Attribute Summary collapse

Instance Attribute Details

#bodyObject

Returns the value of attribute body



85
86
87
# File 'lib/Miyako/API/i_yuki.rb', line 85

def body
  @body
end

#body_disableObject

Returns the value of attribute body_disable



85
86
87
# File 'lib/Miyako/API/i_yuki.rb', line 85

def body_disable
  @body_disable
end

#body_selectedObject

Returns the value of attribute body_selected



85
86
87
# File 'lib/Miyako/API/i_yuki.rb', line 85

def body_selected
  @body_selected
end

#conditionObject

Returns the value of attribute condition



85
86
87
# File 'lib/Miyako/API/i_yuki.rb', line 85

def condition
  @condition
end

#enableObject

Returns the value of attribute enable



85
86
87
# File 'lib/Miyako/API/i_yuki.rb', line 85

def enable
  @enable
end

#resultObject

Returns the value of attribute result



85
86
87
# File 'lib/Miyako/API/i_yuki.rb', line 85

def result
  @result
end