27 lines
693 B
C#
27 lines
693 B
C#
// ***********************************************************************
|
|
// Assembly : Game
|
|
// Author : Kimch
|
|
// Created : 2020-09-02
|
|
// Description :
|
|
// Last Modified By :
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "Bullet_sword" company="Kimch"></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
using UnityEngine;
|
|
|
|
namespace G
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class Bullet_sword : MonoBehaviour
|
|
{
|
|
private void Update()
|
|
{
|
|
this.transform.position += Vector3.up * (Time.deltaTime * 0.1f);
|
|
}
|
|
}
|
|
}
|