일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- SQL
- Brute Force
- 다익스트라
- Dijkstra
- 그래프
- two pointer
- Stored Procedure
- 이진탐색
- 스토어드 프로시저
- String
- Hash
- DP
- Trie
- MYSQL
- union find
- binary search
- Two Points
- Today
- Total
목록전체 글 (418)
codingfarm
트랜스 폼 1 2 3 4 5 6 7 8 9 10 Vector3 velocity; public void Move(Vector3 _velocity) { velocity = _velocity; } public void Update() { transform.Translate(velocity * Time.deltaTime); } Colored by Color Scripter cs 물리엔진 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Vector3 velocity; Rigidbody myRigidbody; void Start() { myRigidbody = GetComponent (); } public void Move(Vector3 _velocity) { velocity = _velocity; } ..
https://docs.unity3d.com/kr/2018.4/Manual/CameraRays.html 화면상에 마우스가 존재하는 위치로 캐릭터를 돌아보게 만들기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public Crosshairs crosshairs; public void LookAt(Vector3 lookPoint) { Vector3 heightCorrectedPoint = new Vector3 (lookPoint.x, transform.position.y, lookPoint.z); transform.LookAt (heightCorrectedPoint); } void Update () { // Look input Ray ray = viewCamera.S..
https://docs.unity3d.com/kr/530/Manual/Coroutines.html 특정 효과를 점진적으로 주고 싶을경우 주로 사용한다. 주로 점차적인 애니메이션 혹은, 분산 연산(로딩 화면 etc)등에 사용됩니다. 1 StartCoroutine(DeathAnimation()); cs 1 2 3 4 5 6 7 8 9 public IEnumerator DeathAnimation() { int current = 0; for (; current > -90; current = current - 5) { transform.Rotate(new Vector3(-5, 0, 0)); yield return null; } Die(); } Colored by Color Scripter cs yield retu..

0. 개요 https://docs.microsoft.com/en-us/windows/win32/dlgbox/using-dialog-boxes 대화상자에는 컨트롤들이 배치되며 사용자는 대화상자를 호출한 후 컨트롤을 통해 자신의 의사를 표시하고 명령을 내리며 프로그램은 대화상자에 배치된 컨트롤을 통해 현재 상태를 사용자에게 보여준다. 대화상자는 크게 모달형과 모델리스형으로 나뉘어진다. 모달(Modal)형 : 대화상자를 닫기 전에 다른 윈도우로 전환할 수 없으며 반드시 OK버튼이나 Cancel 버튼을 눌러 대화상자를 닫아야 다른 윈도우로 전환할 수 있다. MessageBox 함수에 의해 만들어지는 메시지 박스도 모달형 대화상자이다 모델리스(Modeless)형 : 대화상자를 열어 놓은 채로 다른 윈도우로 전환할..