27 lines
726 B
C#
27 lines
726 B
C#
![]() |
// ***********************************************************************
|
|||
|
// Assembly : Game
|
|||
|
// Author : Kimch
|
|||
|
// Created : 2020-09-02
|
|||
|
// Description :
|
|||
|
// Last Modified By :
|
|||
|
// Last Modified On :
|
|||
|
// ***********************************************************************
|
|||
|
// <copyright file= "Ef_Scattering" company="Kimch"></copyright>
|
|||
|
// <summary></summary>
|
|||
|
// ***********************************************************************
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace G
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 散射
|
|||
|
/// </summary>
|
|||
|
public class Ef_Scattering : Ef_base
|
|||
|
{
|
|||
|
public float angle;
|
|||
|
public int num;
|
|||
|
public Transform flyFx;
|
|||
|
public List<Transform> m_fxs;
|
|||
|
}
|
|||
|
}
|