You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
488 B
20 lines
488 B
using UnityEngine; |
|
using System.Collections; |
|
|
|
public class PipeLine : BaseClass |
|
{ |
|
public static int lineIndex = 0; |
|
|
|
|
|
public PipeLine(GameObject obj, GameObject parentObj, GameObject TheUI, int id, RaycastHit hit_, Vector3 pos1_, Vector3 pos2_) |
|
: base(obj, parentObj, TheUI, id, hit_, pos1_, pos2_) |
|
{ |
|
|
|
} |
|
public override void InstatiateItem(string objTypeName, int flag) |
|
{ |
|
base.InstatiateItem(objTypeName, flag); |
|
|
|
lineIndex++; |
|
} |
|
}
|
|
|