本文整理汇总了C#中Terraria.Projectile.getRect方法的典型用法代码示例。如果您正苦于以下问题:C# Projectile.getRect方法的具体用法?C# Projectile.getRect怎么用?C# Projectile.getRect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Terraria.Projectile
的用法示例。
在下文中一共展示了Projectile.getRect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProjectileKilled
//.........这里部分代码省略.........
for (int num723 = 0; num723 < 200; num723++)
{
NPC nPC = Main.npc[num723];
if (nPC.active && nPC.life > 0 && Vector2.Distance(p.Center, nPC.Center) < num720)
{
nPC.AddBuff(203, 1800, false);
}
}
}
}
if (p.type == 771)
{
int rand = Main.rand.Next(1, 3);
for (int i = 0; i < rand; i++)
{
if (Main.rand.Next(2) == 0)
{
int side = Main.rand.Next(4) <= 1 ? 3 : -3;
Projectile.NewProjectile(p.Center.X, p.Center.Y, side, Main.rand.Next(-3, 4), 753, 5, 2f, Main.myPlayer);
}
else
{
int side1 = Main.rand.Next(4) <= 1 ? 3 : -3;
Projectile.NewProjectile(p.Center.X, p.Center.Y, Main.rand.Next(-3, 4), side1, 753, 5, 2f, Main.myPlayer);
}
}
}
if (p.type == 769 || p.type == 770 || p.type == 816)
{
bool flag = false;
int whoIsIt = -1;
for (int i = 0; i < 200; i++)
{
if (Main.npc[i].getRect().Intersects(p.getRect()))
{
flag = true;
whoIsIt = i;
}
}
if (flag && whoIsIt != -1)
{
Projectile.NewProjectile(p.Center.X, p.Center.Y, 0f, 0f, 776, 4, 0f, Main.myPlayer, whoIsIt, Main.npc[whoIsIt].rotation);
}
int amount = 10;
if (p.type == 770)
{
amount = 3;
}
for (int d = 0; d < amount; d++)
{
Dust.NewDust(p.Center, 6, 6, 135, 0f, 0f, 100, default(Color), 1f);
}
}
if (p.type == 766)
{
Main.PlaySound(2, (int)p.position.X, (int)p.position.Y, 14);
for (int num526 = 0; num526 < 300; num526++)
{
float num527 = 12f;
int num528 = 60;
if (num526 < 200)
{
num528 = 66;
num527 = 8f;
}
if (num526 < 100)