Skip to content

Commit

Permalink
Unity 1-1 프로젝트
Browse files Browse the repository at this point in the history
  • Loading branch information
NewLandTV committed Nov 28, 2021
1 parent df15bd9 commit be5cceb
Show file tree
Hide file tree
Showing 29 changed files with 2,670 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .vsconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"version": "1.0",
"components": [
"Microsoft.VisualStudio.Workload.ManagedGame"
]
}
18 changes: 18 additions & 0 deletions Assets/Player.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Player : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("Hello, Unity!");
}

// Update is called once per frame
void Update()
{
Debug.Log("Update");
}
}
11 changes: 11 additions & 0 deletions Assets/Player.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Assets/Scenes.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit be5cceb

Please sign in to comment.