Sprites Project #26
Open
angelbuenrostro wants to merge 6 commits intobloominstituteoftechnology:masterfrom
Open
Sprites Project #26angelbuenrostro wants to merge 6 commits intobloominstituteoftechnology:masterfrom
angelbuenrostro wants to merge 6 commits intobloominstituteoftechnology:masterfrom
Conversation
… time the screen is touched
…ial positions of each added node to the center of the view then add another sequence which changes the position over time to the touch coordinates.
ilqarilyasov
reviewed
Jan 8, 2019
ilqarilyasov
left a comment
There was a problem hiding this comment.
Great job Angel. You got all the required features and stretch goals. You nailed it.
Just a minor suggestion, when you create a new file put it under the main project folder.
And thanks for answering most of the questions
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hello, this is my finished project. I will continue to try and meet the stretch goals. Thank you!
QUESTIONS
Why do we use version Control? Under what circumstances would you need version control features and why?
-Any project would benefit from version control even if there is only one person working on it simply because it allows you to travel back and forth between saved commits if needed and documents how and why changes were made for your future self which may forget important details. That of course extends to larger projects with multiple people working on them.
What are the navigator, editor, and inspectors areas in Xcode? What are their features and why?
-The navigator pane is a hierarchy view of all the files in your Xcode project. You can find your storyboards, swift files, etc in a list and easily choose which one you need to work on from this pane. It also has places to view source control, error messages, debugging/breakpoints, etc.
-The editor inspector allows you to see and change individual settings of different components in your project. For the main.storyboard it is especially important to change UI elements because it displays class information, outlet connections, layout dimensions, etc
How do you center a view in Interface Builder? How do you stretch one?
-You can center a view in IB by using the automatic guidelines when you drag around the element or by using the ‘tie fighter’ buttons to check off the appropriate option such as ‘horizontally contain in center’.
-You can stretch a view by going into the main.storyboard, clicking your view and then finding the ‘tie fighter’ button to add constraints. There are 4 fields which allow you to designate the position of the view edges in relation to the screen. Setting all.4 fields to 0 will make your view cover your entire screen with that view.