로딩
티스토리 데이터 처리 중입니다.

유니티 C# 업적 시스템 만들기 간단 구현 Achievement

 유니티 C# 업적 시스템 만들기 간단 구현 Achievement

코드 작성using System.Collections;using UnityEngine;using UnityEngine.UI;public class AchievementSystem : MonoBehaviour{ [System.Serializable] public class Achievement { public string name; public string description; public bool isUnlocked; public bool showAlert; // 알람을 띄울지 여부 public void Unlock() { if (!isUnlocked) { .....