태그된 제품에 대해 수수료를 받습니다.
public class Practice : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("Normal");
Debug.LogWarning("Warning");
Debug.LogError("Error");
for (int i = 0; i < 100; i++){
Debug.Log("Same Log"); // 같은 로그 모아보려면 Console에서 Collapse
}
}
// Update is called once per frame
void Update()
{
}
}
태그된 제품에 대해 수수료를 받습니다.