A 2D Versus Shmup made in Unity
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation Comment for Projectile

james7132 c4b1c142 4286715d

+6
+6
Assets/External Libraries/DanmakuUnity2D/Core/Projectile.cs
··· 175 175 } 176 176 } 177 177 178 + /// <summary> 179 + /// Compares the tag of the Projectile instance to the given string. 180 + /// Mirrors <a href="http://docs.unity3d.com/ScriptReference/GameObject.CompareTag.html>GameObject.CompareTag</a>. 181 + /// </summary> 182 + /// <returns><c>true</c>, if tag is an exact match to the string, <c>false</c> otherwise.</returns> 183 + /// <param name="tag">Tag.</param> 178 184 public bool CompareTag(string tag) { 179 185 return gameObject.CompareTag (tag); 180 186 }