当前位置: 首页>>代码示例>>C#>>正文


C# Projectile.getRect方法代码示例

本文整理汇总了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)
开发者ID:thegamingboffin,项目名称:Ulterraria_Reborn_GitHub,代码行数:67,代码来源:UlterrariaProjectiles.cs


注:本文中的Terraria.Projectile.getRect方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。