Class: Pathfinding::Target::Border
- Defined in:
- docs/4_Systems_003_Map_Engine.rb
Overview
Border target type
Class Method Summary collapse
-
.load(data)
Create new target from the given data.
Instance Method Summary collapse
-
#check_move(x, y) ⇒ Boolean
Check if the character targetted has moved, considering the distance for optimisation and return true if the target is considered as moved.
-
#initialize(*args) ⇒ Border
constructor
A new instance of Border.
-
#reached?(x, y, z) ⇒ Boolean
Test if the target is reached at the given coords.
-
#save ⇒ Array<Object>
Gather the savable data.
Constructor Details
#initialize(*args) ⇒ Border
Returns a new instance of Border.
3905 3906 |
# File 'docs/4_Systems_003_Map_Engine.rb', line 3905 def initialize(*args) end |
Class Method Details
.load(data)
Create new target from the given data
3926 3927 |
# File 'docs/4_Systems_003_Map_Engine.rb', line 3926 def self.load(data) end |
Instance Method Details
#check_move(x, y) ⇒ Boolean
Check if the character targetted has moved, considering the distance for optimisation and return true if the target is considered as moved
3918 3919 |
# File 'docs/4_Systems_003_Map_Engine.rb', line 3918 def check_move(x, y) end |
#reached?(x, y, z) ⇒ Boolean
Test if the target is reached at the given coords
3912 3913 |
# File 'docs/4_Systems_003_Map_Engine.rb', line 3912 def reached?(x, y, z) end |
#save ⇒ Array<Object>
Gather the savable data
3922 3923 |
# File 'docs/4_Systems_003_Map_Engine.rb', line 3922 def save end |