Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
unity_game_dev [2020/04/16 05:52] paul [Unity Engine] |
unity_game_dev [2020/04/18 21:02] (current) paul [Unity Engine] |
||
---|---|---|---|
Line 6: | Line 6: | ||
Unity comes with a bunch of tools that you have to install from the package manager. This is confusing because they have both an asset store and a package manager. You can install Probuilder, which lets you design, prototype and play-test levels rapidly in the Unity Editor. | Unity comes with a bunch of tools that you have to install from the package manager. This is confusing because they have both an asset store and a package manager. You can install Probuilder, which lets you design, prototype and play-test levels rapidly in the Unity Editor. | ||
+ | |||
+ | ==== Cameras ==== | ||
+ | |||
+ | To set a camera' | ||
===== Reference Frames ===== | ===== Reference Frames ===== | ||
Line 214: | Line 218: | ||
} | } | ||
</ | </ | ||
+ | |||
+ | ==== Rect Transform ==== | ||
+ | |||
+ | These friggen things. If you press shift and then alt, something happens. Will need to dive into this at one point. | ||
+ | |||
+ | {{:: | ||
===== Unity Engine ===== | ===== Unity Engine ===== | ||
Line 341: | Line 351: | ||
public Component particleSystem { get; } | public Component particleSystem { get; } | ||
</ | </ | ||
+ | |||
+ | ===== Debug ===== | ||
+ | |||
+ | You can format your debug colors! | ||
+ | |||
+ | <code c#> | ||
+ | Debug.LogError("< | ||
+ | </ | ||
+ | |||
===== Multiplayer ===== | ===== Multiplayer ===== | ||
Line 347: | Line 366: | ||
Another option is to use Photon' | Another option is to use Photon' | ||
+ | |||
+ | ==== Photon PUN ==== | ||
+ | |||
+ | === PhotonView === | ||
+ | A [[https:// | ||