본문 바로가기

OYEAHHH79

[MySQL] #에러 5.7 버전 로그인 에러 Access denied for user 'root'@'localhost' (using password: NO) MySQL을 설치한 후 root 사용자로 로그인을 하려는 경우 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 에러가 발생하는 경우가 있다. 1. 작업관리자에서 MySQL 서비스를 중지시킨다. 2. 관리자 권한으로 cmd 를 실행시킨후 MySQL이 설치된 폴더의 bin 폴더로 들어간다. $ mysqld.exe -u root --skip-grant-tables 그 후 다시 로그인 하면 된다. 2016. 5. 11.
[Unity 5] Unity 5 와 C# Visual Studio 연결 유니티에서 script 를 실행하면 자동으로 MonoDevelop 편집툴을 이용하여 파일을 연다.하지만 나는 visual studio 가 익숙하므로 visual studio 를 이용하여 C# script 를 수정하고자 한다. Edit -> Preferences 에서 External Tools - External Script Editor 을 Visual Studio 로 변경해 주면 된다. 2016. 1. 7.
[Unity 5] #에러 No Android module loaded. Unity 5 에서 플랫폼을 안드로이드로 바꾸고 싶을 때안드로이드 모듈을 로드할 수 없다고 나오는 경우가 있다. Unity 5 를 설치할 때 Android Build Support 를 같이 깔아주지 않아서 그렇다.Unity 5 를 다시 설치할 때 Android Build Support 를 체크해준다. 새로 설치를 하고 나면 제대로 된다! 출처https://www.youtube.com/watch?v=E52z9Y8yYlg 2016. 1. 6.
[Unity 5] <C# Script> AudioSource,Play AudioSource 변수를 선언하지 않고는 실행되지 않는다. AudioSource 변수 audio를 선언한 뒤 GetComponent() 함수를 이용하여 오브젝트에 적용된 컴포넌트를 받아온 뒤 Play() 한다. Play() 함수에 매개변수값을 넣어 delay 시킬 수도 있다.audio.Play(44100); -> Play(44100)은 음악을 1초 지연시킨다. using UnityEngine;using System.Collections; public class ExampleClass : MonoBehaviour {AudioSource audio = GetComponent();audio.Play();} 출처http://docs.unity3d.com/ScriptReference/AudioSource.Pl.. 2015. 12. 29.
[Unity 5] Material에 Texture 지정하기. 만들어둔 Material 을 선택한 뒤, Inspector에서 1. Albedo 옆에 있는 아이콘을 눌러 넣을 이미지를 선택한다. 2. Shader 을 Unlit 의 Texture 를 선택한다. Select 를 눌러서 넣을 이미지를 선택한다. 출처http://answers.unity3d.com/questions/974274/hownto-apply-textures-to-materials-in-unity-5.html 2015. 12. 28.
[Unity 5] Render Settings Unity 5로 업데이트 하고난 후 Render Settings가 사라졌다. [ Edit -> Render Settings ] 대신 [ Window -> Lighting ] 에 들어가면 된다. 출처http://answers.unity3d.com/questions/949154/unity-5-render-settings-please-help.html#answer-949163 2015. 12. 28.