Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- 컴퓨터과학총론
- 해석
- 개발자
- MySQL
- error
- mariadb
- 프래그먼트
- H2O
- php
- unity
- 번역
- 안드로이드
- 개발
- C lanuage
- kakao
- it
- 자바
- 한글
- android
- Portfolio
- ubuntu
- NGINX
- techEmpower
- centOS7
- 구글
- C
- server
- javascript
- caddy
Archives
- Today
- Total
목록2D (1)
개발모음집
Unity 2D 게임, Player따라 카메라가 따라가도록 하는 기능
using System.Collections;using System.Collections.Generic;using UnityEngine; public class Camerafollow : MonoBehaviour { public float smoothTimeX, smoothTimeY;public Vector2 velocity;public GameObject player;public Vector2 minPos, maxPos;public bool bound; // 캐릭터 초기화void Start () {player = GameObject.FindGameObjectWithTag ("Player");} // 캐릭터의 위에 따라 카메라가 이동하도록 하는 메서드void FixedUpdate () {float pos..
TheRestDevelop
2018. 6. 11. 09:00