GDQuest / GDQuest/learn-gdscript
Lesson 24 ~ Wrong track
Open
content
- Dominant language
- GDScript
- Stars
- 2.8k
- Forks
- 235
- PR merge metrics
- No merged PRs in 30d
Description
Youre asking to "align()" the 1st, 2nd and 3rd track when it is the 1st, 3rd and 4th track.
I am on ubuntu, running the app Learn gdscript.
Philippe Monteiro.
Youre welcome.
#Sample of my code (wich work currently)
var tracks = []
func fix_tracks():
align(tracks[-1])
align(tracks[-3])
align(tracks[-4])
#Sample of my code (wich does not work)
var tracks = []
func fix_tracks():
align(tracks[-1])
align(tracks[-2])
align(tracks[-3])
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.