728x90
728x90
DungeonShooter 게임 만들기-1
탑뷰형태의 게임
1)Tile Map slice 하기
가져온 이미지가 하나로 붙어 있는경우 Sprite Modef를 Single에서 multiple 로 바꾼뒤 sprite Editor로 slice 해주기
2)window-2d-Tile palette 클릭 후 생성
왼쪽부터
선택-이동-붙이기-박스로 영역주기- ?-지우기-영역채우기
3)Rectangluar (사각형) 생성
카메라가 플레이어를 따라다니도록 하자
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// 카메라 위치 = 플레이어 위치
public class CamFollow : MonoBehaviour
{
Transform myTr;
Transform playerTr;
void Start()
{
myTr = GetComponent<Transform>();
playerTr = GameObject.FindGameObjectWithTag("Player").transform;
}
private void LateUpdate()
{
if (playerTr != null)
myTr.position = new Vector3(playerTr.position.x, playerTr.position.y, -10);
}
}
728x90
'유니티 > C#' 카테고리의 다른 글
17. 인벤토리 만들기-2 (0) | 2023.04.12 |
---|---|
14. 간단 로그라이크 만들기 - 5 (0) | 2023.04.06 |
13. 간단 로그라이크 만들기 - 4 (0) | 2023.04.05 |
12. 간단 로그라이크 만들기 - 3 (0) | 2023.04.04 |
11. 간단 로그라이크 만들기 - 2 (0) | 2023.04.03 |