1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| public class PN_ChangeHitSound : ProcessNode
| {
| public PN_ChangeHitSound(GA_NpcClientFightNorm npc, int id)
| {
| intParam = id;
| m_Target = npc;
| }
|
| public override void Init()
| {
| m_Target.hitSoundId = intParam;
| }
|
| public override bool IsOver()
| {
| return true;
| }
|
| public override void UnInit()
| {
| m_Target = null;
| }
|
| public override void Update()
| {
| }
| }
|
|