27 lines
726 B
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// 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;
}
}