Posts
53 posts[경고&에러 대응] `UnityEditor.EditorApplication.playmodeStateChanged' is obsolete
void OnEnable() { if (!IsUnityWritingToPlist()) RefreshKeys(); //Make sure we never subscribe twice as OnEnable will be called more often then you think :) EditorApplication.playmodeStateChanged -= OnPlayModeStateChanged; EditorApplication.playmodeStateChanged += OnPlayModeStateChanged; } private void OnPlayModeStateChanged() { waitTillPlistHas
[경고&에러 대응] `UnityEditor.EditorGUIUtility.LookLikeControls(float)' is obsolete
EditorGUIUtility.LookLikeControls(labelWidth); -> EditorGUIUtility.labelWidth = labelWidth;
[경고&에러 대응] `UnityEditor.EditorApplication.currentScene' is obsolete
mParam.Reference = mParam.Value.name + "(" + EditorApplication.currentScene+")"; -> using UnityEditor.SceneManagement; mParam.Reference = mParam.Value.name + "(" + EditorSceneManager.GetActiveScene ().name + ")";//EditorApplication.currentScene+")";
[경고&에러 대응] UnityEngine.ParticleSystem.enableEmission' is obsolete
foreach (ParticleSystem em in pss)if (em != null) { em.enableEmission = false;} -> foreach (ParticleSystem em in pss)if (em != null) { var emission = em.emission; //added for unity2017 emission.enabled = false; //em.enableEmission = false; //modified for unity2017}



![[Spoiler] '우주 형제' 완결. 매거진 신작 '천선 전기'.](https://img.zoomtrend.com/2026/06/10/1781142015-ECBD98ED8AB8EBA1A4EB9FACEBA5BCEB93A0EC9E90.jpg)