32 lines
764 B
C#
32 lines
764 B
C#
// ***********************************************************************
|
|
// Assembly : Unity
|
|
// Author : Kimch
|
|
// Created : 2018-2-29
|
|
// Description :
|
|
// Last Modified By :
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "EnemyInfo" company=""></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
using UnityEngine;
|
|
|
|
namespace G
|
|
{
|
|
public class EnemyInfo : MonoBehaviour
|
|
{
|
|
public int enemykind;
|
|
|
|
public Transform ef_weapon;
|
|
|
|
public AudioClip snd_attack;
|
|
|
|
public Transform direction_arrow;
|
|
|
|
public Transform line;
|
|
|
|
[Tooltip("使用目标位置")]
|
|
public bool useTargetPosition;
|
|
}
|
|
}
|