JJBB/Assets/Project/Script/EffectAddPoint.cs
2024-08-23 15:49:34 +08:00

15 lines
839 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/********************************************************************************
* 功能说明:记录特效的挂在点
* 有些特效需要挂载在很深的子物体上,为了方便查找,子物体可以挂上该脚本,方便查找
*
* 加载特效的时候 在父物体上的挂载点物体加上该脚本,并且设置好挂载点名字和编号
* 特效对应关系是通过表配置的,就是加载的特效物体需要到相应的表格中寻找它的挂载
* 信息的而武器的挂载信息是直接储存在prefab物体上的这点区别看后面是否需要修改
* 成统一的
*********************************************************************************/
using UnityEngine;
public class EffectAddPoint : MonoBehaviour
{
public string pointName = "NewEffectPoint"; //挂载点名字
}