{"id":377,"date":"2018-11-27T23:29:06","date_gmt":"2018-11-27T14:29:06","guid":{"rendered":"http:\/\/reasty.net\/?p=377"},"modified":"2018-11-27T23:29:06","modified_gmt":"2018-11-27T14:29:06","slug":"unity-basic-parts-5-runner2","status":"publish","type":"post","link":"https:\/\/reasty.net\/?p=377","title":{"rendered":"Unity basic parts (5) \u2013 Uni-Run(2)"},"content":{"rendered":"<p>\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4.<br \/>\n\uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4.<\/p>\n<p>\uce74\uba54\ub77c &#8211; \ubc31\uadf8\ub77c\uc6b4\ub4dc =&gt; \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c<\/p>\n<p>transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8<br \/>\n\/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5<\/p>\n<p>Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c<\/p>\n<p>\uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4.<\/p>\n<p><strong>Awake()<\/strong> : Start()\uc640 \ube44\uc2b7\ud558\uc9c0\ub9cc Start() \ubcf4\ub2e4 \ud55c\ubc15\uc790 \ube60\ub974\ub2e4.<br \/>\n<strong>OnEnable<\/strong>() : \ucef4\ud3ec\ub10c\ud2b8\uac00 \ud65c\uc131\ud654\ub420\ub54c \ub9c8\ub2e4 \ub9e4\ubc88 \uc2e4\ud589\ub418\ub294 \uba54\uc11c\ub4dc<br \/>\n<strong>OnDisable<\/strong>() : \ucef4\ud3ec\ub10c\ud2b8\uac00 \ud65c\uc131\ud654\ub420\ub54c \ub9c8\ub2e4 \ub9e4\ubc88 \uc2e4\ud589\ub418\ub294 \uba54\uc11c\ub4dc<\/p>\n<pre class=\"lang:c# decode:true \" title=\"\ub9ac\uc14b\uc744 \uad6c\ud604\ud558\ub294 \uac04\ub2e8\ud55c \ubc29\ubc95 \uc911 \ud558\ub098\">void Update()\n{\n    \/\/ \uac8c\uc784 \uc624\ubc84 \uc0c1\ud0dc\uc5d0\uc11c \uac8c\uc784\uc744 \uc7ac\uc2dc\uc791\ud560 \uc218 \uc788\uac8c \ud558\ub294 \ucc98\ub9ac\n    if (isGameover &amp;&amp; Input.GetMouseButtonDown(0))\n    {\n        SceneManager.LoadScene(SceneManager.GetActiveScene().name);\n    }\n}<\/pre>\n<p>OnCollisionEnter2D(Collision2D collision)<br \/>\n<strong>collision.collider<\/strong> : \ucda9\ub3cc\ud55c \uc0c1\ub300\ubc29 collider<\/p>\n<p><strong>Anchor<\/strong> : \ubc30\uce58\uc758 \uae30\uc900\uc810. (\uae00\ub85c\ubc8c \uc88c\ud45c\uacc4).\u00a0\ud504\ub808\uc784\uc758 \uae30\uc900\uc810, \ubbfc \ub9e5\uc2a4\ub97c \ucabc\uac1c\uba74(\ub2e4\ub974\uac8c \ud558\uba74) \ub298\uc774\ub294 \uc601\uc5ed\uc744 \ub098\ud0c0\ub0b8\ub2e4 (\uc2a4\ud2b8\ub798\uce58 \ubaa8\ub4dc)<\/p>\n<p><strong>Pivot<\/strong> : \uc2a4\uc2a4\ub85c\uc758 \uae30\uc900\uc810.<\/p>\n<p>Canvas Scaling<br \/>\nCanvas Scaler : UI Scale Mode &#8211; \uace0\uc815\ud53d\uc140\ubaa8\ub4dc\/\uc2a4\ucf00\uc77c with \uc2a4\ud06c\ub9b0 \uc0ac\uc774\uc988<br \/>\nMatch : \ud654\uba74 \ube44\uac00 \ub2e4\ub97c\ub54c \uc0ac\uc6a9 : Width, Height<\/p>\n<p>Runner \uac8c\uc784 \uc18c\uc2a4<br \/>\n<a href=\"https:\/\/github.com\/reastykim\/SVVR-Uni-Run\" target=\"_blank\" rel=\"noopener\">https:\/\/github.com\/reastykim\/SVVR-Uni-Run<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c &#8211; \ubc31\uadf8\ub77c\uc6b4\ub4dc =&gt; \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640 \ube44\uc2b7\ud558\uc9c0\ub9cc Start() \ubcf4\ub2e4 \ud55c\ubc15\uc790 \ube60\ub974\ub2e4&#8230;. <a href=\"https:\/\/reasty.net\/?p=377\">Read more &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[9,11],"tags":[21,45],"class_list":["post-377","post","type-post","status-publish","format-standard","hentry","category-study","category-unity","tag-c","tag-unity"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c - \ubc31\uadf8\ub77c\uc6b4\ub4dc =&gt; \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Reasty\"\/>\n\t<meta name=\"google-site-verification\" content=\"jcPlHP_CH1l7BsKhhCYbJmc3sJMEMI_aCypCiUfTjdw\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/reasty.net\/?p=377\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"ko_KR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Reasty&#039;s Programming Memories - \ub808\uc2a4\ud2f0\uc758 \ud504\ub85c\uadf8\ub798\ubc0d \ub178\ud558\uc6b0 \ub178\uc6e8\uc5b4\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Unity basic parts (5) \u2013 Uni-Run(2) - Reasty&#039;s Programming Memories\" \/>\n\t\t<meta property=\"og:description\" content=\"\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c - \ubc31\uadf8\ub77c\uc6b4\ub4dc =&gt; \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/reasty.net\/?p=377\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2018-11-27T14:29:06+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2018-11-27T14:29:06+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/reastykim\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@reastykim\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Unity basic parts (5) \u2013 Uni-Run(2) - Reasty&#039;s Programming Memories\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c - \ubc31\uadf8\ub77c\uc6b4\ub4dc =&gt; \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@reastykim\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#blogposting\",\"name\":\"Unity basic parts (5) \\u2013 Uni-Run(2) - Reasty's Programming Memories\",\"headline\":\"Unity basic parts (5) \\u2013 Uni-Run(2)\",\"author\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5b441925fb88cfa3ff962d797c048671a3ef20a01d85a4de1feadc32d00b2d89?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Reasty\"},\"datePublished\":\"2018-11-27T23:29:06+09:00\",\"dateModified\":\"2018-11-27T23:29:06+09:00\",\"inLanguage\":\"ko-KR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#webpage\"},\"articleSection\":\"Study, Unity, C#, Unity\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net#listItem\",\"position\":1,\"name\":\"\\ud648\",\"item\":\"https:\\\/\\\/reasty.net\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?cat=9#listItem\",\"name\":\"Study\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?cat=9#listItem\",\"position\":2,\"name\":\"Study\",\"item\":\"https:\\\/\\\/reasty.net\\\/?cat=9\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?cat=11#listItem\",\"name\":\"Unity\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net#listItem\",\"name\":\"\\ud648\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?cat=11#listItem\",\"position\":3,\"name\":\"Unity\",\"item\":\"https:\\\/\\\/reasty.net\\\/?cat=11\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#listItem\",\"name\":\"Unity basic parts (5) \\u2013 Uni-Run(2)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?cat=9#listItem\",\"name\":\"Study\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#listItem\",\"position\":4,\"name\":\"Unity basic parts (5) \\u2013 Uni-Run(2)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?cat=11#listItem\",\"name\":\"Unity\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/reasty.net\\\/#person\",\"name\":\"Reasty\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5b441925fb88cfa3ff962d797c048671a3ef20a01d85a4de1feadc32d00b2d89?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Reasty\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?author=1#author\",\"url\":\"https:\\\/\\\/reasty.net\\\/?author=1\",\"name\":\"Reasty\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5b441925fb88cfa3ff962d797c048671a3ef20a01d85a4de1feadc32d00b2d89?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Reasty\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#webpage\",\"url\":\"https:\\\/\\\/reasty.net\\\/?p=377\",\"name\":\"Unity basic parts (5) \\u2013 Uni-Run(2) - Reasty's Programming Memories\",\"description\":\"\\ub808\\uc774\\uc5b4\\uc758 \\uc21c\\uc11c\\ub294 Z \\uac12\\uc5d0\\ub294 \\uc601\\ud5a5 \\ubc1b\\uc9c0 \\uc54a\\ub294\\ub2e4. \\uc815\\ub82c\\uc21c\\uc11c\\ub294 Sorting Layer\\ub97c \\ubcc0\\uacbd\\ud55c\\ub2e4. \\uce74\\uba54\\ub77c - \\ubc31\\uadf8\\ub77c\\uc6b4\\ub4dc => \\uc2a4\\ud3ec\\uc774\\ub4dc \\ud234\\ub85c \\ubc30\\uacbd \\uc774\\uc5b4\\uc90c transform.Translate \\\/\\\/ \\ud3c9\\ud589\\uc774\\ub3d9 \\uba54\\uc11c\\ub4dc : \\uc624\\ube0c\\uc81d\\ud2b8 \\uc88c\\ud45c\\uacc4(\\uc790\\uae30\\uc790\\uc2e0\\uc758)\\ub85c \\uc774\\ub3d9\\ud55c\\ub2e4. \\uae00\\ub85c\\ubc8c \\uc544\\ub2d8 \\\/\\\/ \\ub450\\ubc88\\uc9f8 \\ud30c\\ub77c\\ubbf8\\ud130\\ub294 Space.Self \\uac00 \\uc0dd\\ub7b5\\ub418\\uc5b4\\uc788\\ub2e4. \\uc774\\ub3d9 \\ubc29\\ud5a5 Ctrl+D : \\uc624\\ube0c\\uc81d\\ud2b8 \\ubcf5\\uc81c \\uac8c\\uc784\\uc624\\ube0c\\uc81d\\ud2b8\\uc758 \\ud06c\\uae30\\ub97c \\ucc3e\\ub294\\ubc95 : Box Collider 2D \\ub97c \\ucd94\\uac00\\ud558\\uc5ec Size\\ub97c \\ucc3e\\ub294\\ub2e4. Awake() : Start()\\uc640\",\"inLanguage\":\"ko-KR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/?p=377#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/?author=1#author\"},\"datePublished\":\"2018-11-27T23:29:06+09:00\",\"dateModified\":\"2018-11-27T23:29:06+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/reasty.net\\\/#website\",\"url\":\"https:\\\/\\\/reasty.net\\\/\",\"name\":\"Reasty's Programming Memories\",\"description\":\"\\ub808\\uc2a4\\ud2f0\\uc758 \\ud504\\ub85c\\uadf8\\ub798\\ubc0d \\ub178\\ud558\\uc6b0 \\ub178\\uc6e8\\uc5b4\",\"inLanguage\":\"ko-KR\",\"publisher\":{\"@id\":\"https:\\\/\\\/reasty.net\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Unity basic parts (5) \u2013 Uni-Run(2) - Reasty's Programming Memories","description":"\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c - \ubc31\uadf8\ub77c\uc6b4\ub4dc => \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640","canonical_url":"https:\/\/reasty.net\/?p=377","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"jcPlHP_CH1l7BsKhhCYbJmc3sJMEMI_aCypCiUfTjdw","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/reasty.net\/?p=377#blogposting","name":"Unity basic parts (5) \u2013 Uni-Run(2) - Reasty's Programming Memories","headline":"Unity basic parts (5) \u2013 Uni-Run(2)","author":{"@id":"https:\/\/reasty.net\/?author=1#author"},"publisher":{"@id":"https:\/\/reasty.net\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/reasty.net\/?p=377#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/5b441925fb88cfa3ff962d797c048671a3ef20a01d85a4de1feadc32d00b2d89?s=96&d=mm&r=g","width":96,"height":96,"caption":"Reasty"},"datePublished":"2018-11-27T23:29:06+09:00","dateModified":"2018-11-27T23:29:06+09:00","inLanguage":"ko-KR","mainEntityOfPage":{"@id":"https:\/\/reasty.net\/?p=377#webpage"},"isPartOf":{"@id":"https:\/\/reasty.net\/?p=377#webpage"},"articleSection":"Study, Unity, C#, Unity"},{"@type":"BreadcrumbList","@id":"https:\/\/reasty.net\/?p=377#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/reasty.net#listItem","position":1,"name":"\ud648","item":"https:\/\/reasty.net","nextItem":{"@type":"ListItem","@id":"https:\/\/reasty.net\/?cat=9#listItem","name":"Study"}},{"@type":"ListItem","@id":"https:\/\/reasty.net\/?cat=9#listItem","position":2,"name":"Study","item":"https:\/\/reasty.net\/?cat=9","nextItem":{"@type":"ListItem","@id":"https:\/\/reasty.net\/?cat=11#listItem","name":"Unity"},"previousItem":{"@type":"ListItem","@id":"https:\/\/reasty.net#listItem","name":"\ud648"}},{"@type":"ListItem","@id":"https:\/\/reasty.net\/?cat=11#listItem","position":3,"name":"Unity","item":"https:\/\/reasty.net\/?cat=11","nextItem":{"@type":"ListItem","@id":"https:\/\/reasty.net\/?p=377#listItem","name":"Unity basic parts (5) \u2013 Uni-Run(2)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/reasty.net\/?cat=9#listItem","name":"Study"}},{"@type":"ListItem","@id":"https:\/\/reasty.net\/?p=377#listItem","position":4,"name":"Unity basic parts (5) \u2013 Uni-Run(2)","previousItem":{"@type":"ListItem","@id":"https:\/\/reasty.net\/?cat=11#listItem","name":"Unity"}}]},{"@type":"Person","@id":"https:\/\/reasty.net\/#person","name":"Reasty","image":{"@type":"ImageObject","@id":"https:\/\/reasty.net\/?p=377#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/5b441925fb88cfa3ff962d797c048671a3ef20a01d85a4de1feadc32d00b2d89?s=96&d=mm&r=g","width":96,"height":96,"caption":"Reasty"}},{"@type":"Person","@id":"https:\/\/reasty.net\/?author=1#author","url":"https:\/\/reasty.net\/?author=1","name":"Reasty","image":{"@type":"ImageObject","@id":"https:\/\/reasty.net\/?p=377#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/5b441925fb88cfa3ff962d797c048671a3ef20a01d85a4de1feadc32d00b2d89?s=96&d=mm&r=g","width":96,"height":96,"caption":"Reasty"}},{"@type":"WebPage","@id":"https:\/\/reasty.net\/?p=377#webpage","url":"https:\/\/reasty.net\/?p=377","name":"Unity basic parts (5) \u2013 Uni-Run(2) - Reasty's Programming Memories","description":"\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c - \ubc31\uadf8\ub77c\uc6b4\ub4dc => \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640","inLanguage":"ko-KR","isPartOf":{"@id":"https:\/\/reasty.net\/#website"},"breadcrumb":{"@id":"https:\/\/reasty.net\/?p=377#breadcrumblist"},"author":{"@id":"https:\/\/reasty.net\/?author=1#author"},"creator":{"@id":"https:\/\/reasty.net\/?author=1#author"},"datePublished":"2018-11-27T23:29:06+09:00","dateModified":"2018-11-27T23:29:06+09:00"},{"@type":"WebSite","@id":"https:\/\/reasty.net\/#website","url":"https:\/\/reasty.net\/","name":"Reasty's Programming Memories","description":"\ub808\uc2a4\ud2f0\uc758 \ud504\ub85c\uadf8\ub798\ubc0d \ub178\ud558\uc6b0 \ub178\uc6e8\uc5b4","inLanguage":"ko-KR","publisher":{"@id":"https:\/\/reasty.net\/#person"}}]},"og:locale":"ko_KR","og:site_name":"Reasty's Programming Memories - \ub808\uc2a4\ud2f0\uc758 \ud504\ub85c\uadf8\ub798\ubc0d \ub178\ud558\uc6b0 \ub178\uc6e8\uc5b4","og:type":"article","og:title":"Unity basic parts (5) \u2013 Uni-Run(2) - Reasty's Programming Memories","og:description":"\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c - \ubc31\uadf8\ub77c\uc6b4\ub4dc =&gt; \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640","og:url":"https:\/\/reasty.net\/?p=377","article:published_time":"2018-11-27T14:29:06+00:00","article:modified_time":"2018-11-27T14:29:06+00:00","article:publisher":"https:\/\/facebook.com\/reastykim","twitter:card":"summary_large_image","twitter:site":"@reastykim","twitter:title":"Unity basic parts (5) \u2013 Uni-Run(2) - Reasty's Programming Memories","twitter:description":"\ub808\uc774\uc5b4\uc758 \uc21c\uc11c\ub294 Z \uac12\uc5d0\ub294 \uc601\ud5a5 \ubc1b\uc9c0 \uc54a\ub294\ub2e4. \uc815\ub82c\uc21c\uc11c\ub294 Sorting Layer\ub97c \ubcc0\uacbd\ud55c\ub2e4. \uce74\uba54\ub77c - \ubc31\uadf8\ub77c\uc6b4\ub4dc =&gt; \uc2a4\ud3ec\uc774\ub4dc \ud234\ub85c \ubc30\uacbd \uc774\uc5b4\uc90c transform.Translate \/\/ \ud3c9\ud589\uc774\ub3d9 \uba54\uc11c\ub4dc : \uc624\ube0c\uc81d\ud2b8 \uc88c\ud45c\uacc4(\uc790\uae30\uc790\uc2e0\uc758)\ub85c \uc774\ub3d9\ud55c\ub2e4. \uae00\ub85c\ubc8c \uc544\ub2d8 \/\/ \ub450\ubc88\uc9f8 \ud30c\ub77c\ubbf8\ud130\ub294 Space.Self \uac00 \uc0dd\ub7b5\ub418\uc5b4\uc788\ub2e4. \uc774\ub3d9 \ubc29\ud5a5 Ctrl+D : \uc624\ube0c\uc81d\ud2b8 \ubcf5\uc81c \uac8c\uc784\uc624\ube0c\uc81d\ud2b8\uc758 \ud06c\uae30\ub97c \ucc3e\ub294\ubc95 : Box Collider 2D \ub97c \ucd94\uac00\ud558\uc5ec Size\ub97c \ucc3e\ub294\ub2e4. Awake() : Start()\uc640","twitter:creator":"@reastykim"},"aioseo_meta_data":{"post_id":"377","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-08-10 04:58:12","updated":"2025-06-04 03:16:18","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/reasty.net\" title=\"\ud648\">\ud648<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/reasty.net\/?cat=9\" title=\"Study\">Study<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/reasty.net\/?cat=11\" title=\"Unity\">Unity<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tUnity basic parts (5) \u2013 Uni-Run(2)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\ud648","link":"https:\/\/reasty.net"},{"label":"Study","link":"https:\/\/reasty.net\/?cat=9"},{"label":"Unity","link":"https:\/\/reasty.net\/?cat=11"},{"label":"Unity basic parts (5) \u2013 Uni-Run(2)","link":"https:\/\/reasty.net\/?p=377"}],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/reasty.net\/index.php?rest_route=\/wp\/v2\/posts\/377","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/reasty.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/reasty.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/reasty.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/reasty.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=377"}],"version-history":[{"count":0,"href":"https:\/\/reasty.net\/index.php?rest_route=\/wp\/v2\/posts\/377\/revisions"}],"wp:attachment":[{"href":"https:\/\/reasty.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=377"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/reasty.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=377"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/reasty.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}