forked from AsherGlick/Burrito
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AsherGlick#356 from klingbolt/guildpoint_over_wayp…
…oint Changed the name waypoint to guildpoint
- Loading branch information
Showing
59 changed files
with
471 additions
and
471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
const Waypoint = preload("res://waypoint.gd") | ||
const Guildpoint = preload("res://guildpoint.gd") | ||
|
||
var category3d: Spatial | ||
var category2d: Node2D | ||
var waypoint_category: Waypoint.Category | ||
var guildpoint_category: Guildpoint.Category | ||
var is_visible = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
extends Line2D | ||
|
||
const Waypoint = preload("res://waypoint.gd") | ||
var waypoint: Waypoint.Trail | ||
const Guildpoint = preload("res://guildpoint.gd") | ||
var guildpoint: Guildpoint.Trail | ||
|
||
func refresh_points(): | ||
var trail_points := PoolVector2Array() | ||
var trail_data = self.waypoint.get_trail_data() | ||
var trail_data = self.guildpoint.get_trail_data() | ||
for index in range(0, trail_data.get_points_z().size()): | ||
trail_points.append(Vector2(trail_data.get_points_x()[index], -trail_data.get_points_z()[index])) | ||
self.points = trail_points |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.