BootCamp week 1 Flashcards
Redo Hotkey?
Ctrl + Y
Undo Hotkey?
Ctrl + Z
Generate field Hotkey?
Alt + Enter
Go to front of line Hotkey?
Home
Go to Definition Hotkey?
F12
Rename a word though entire file Hotkey?
Crtl + R + R
Auto Indent Hotkey?
Ctrl + K + D
Delete one word Hotkey?
Ctrl + Delete
Delete entire line Hotkey
Shift + Delete
Skip to next word Hotkey?
Ctrl + Arrow Keys
Highlight Word Hotkey?
Shift + Arrow Keys
How to search for all sprites?
Search by type, Choose textures
How to tile 2D textures?
Change sprite mesh type to Full Rect, Change Draw Mode to Tiled.
Extend tiled texture box collider?
In box collider click Auto Tiling.
What Collider to use on a player for 2D?
Polygon Collider
How to assign horizontal axis? (Old Input)
var horizontal = Input.GetAxis(“Horizontal”);
How to get Rigidbody2D?
var Rb = GetComponent<Rigidbody2D>();</Rigidbody2D>
How to assign new vector2 to rigidbody?
Rb.velocity = new vector2(horizontal, vertical);