TARGET TODO

This commit is contained in:
김도환
2026-04-16 19:40:42 +09:00
parent dae9c52398
commit 65c997406b
21 changed files with 554 additions and 120 deletions

View File

@@ -0,0 +1,23 @@
using System;
using UnityEngine;
public class BulletMovement : MonoBehaviour
{
public float moveSpeed = 10;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.Translate(Vector2.up * (Time.deltaTime * moveSpeed));
}
private void OnTriggerEnter2D(Collider2D other)
{
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 80aae26211daf7b4d9f8f603e7c6987f