Skip to content

Commit

Permalink
uncompact this line
Browse files Browse the repository at this point in the history
  • Loading branch information
DSchaedler committed Jun 20, 2021
1 parent 6224666 commit 8ba036d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spaceTrader/app/textbox_making.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

def textbox_background(x_pos:, y_pos:, width:, height:, segment: 32)
y_pos -= segment
alpha = 255; r = 168; g = 181; b = 178
alpha = 255
r = 168
g = 181
b = 178
textbox = []
textbox << [x_pos, y_pos, segment, segment, 'sprites/textbox/textbox0.png', 0, alpha, r, g, b].sprite
textbox << [x_pos + segment, y_pos, width - segment * 2, segment, 'sprites/textbox/textbox1.png', 0, alpha, r, g,
Expand Down

0 comments on commit 8ba036d

Please sign in to comment.