Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialVineet Tiwari
6,609 PointsThe green bar on the ground.
How do I get rid of the green bar that is covering the surface of the moon.
4 Answers
Pedro Ruíz
28,105 PointsChange your SKColor to clearColor to have it be transparent
THGroundNode *ground = [self spriteNodeWithColor:[SKColor clearColor] size:size];
Pedro Ruíz
28,105 PointsI did this course a little while back, would you mind posting your code to see where you're at in the project?
Vineet Tiwari
6,609 PointsTHGroundNode *ground = [self spriteNodeWithColor:[SKColor greenColor] size:size]; the code above is causing the green bar to be present on the scene. I was just wondering as to what I can replace this with so that the bar goes away. Also, my entire code in on github : https://github.com/vineetTiwari/SpaceCat
Vineet Tiwari
6,609 PointsThank you Mr Ruiz; it works.