コード例 #1
0
        public static int GetTriggerParticles(this ParticleSystem ps, ParticleSystemTriggerEventType type, List <ParticleSystem.Particle> particles, out ParticleSystem.ColliderData colliderData)
        {
            if (type == ParticleSystemTriggerEventType.Exit)
            {
                throw new InvalidOperationException("Querying the collider data for the Exit event is not currently supported.");
            }
            else if (type == ParticleSystemTriggerEventType.Outside)
            {
                throw new InvalidOperationException("Querying the collider data for the Outside event is not supported, because when a particle is outside the collision volume, it is always outside every collider.");
            }

            colliderData = new ParticleSystem.ColliderData();
            return(ParticleSystemExtensionsImpl.GetTriggerParticlesWithData(ps, (int)type, particles, ref colliderData));
        }
コード例 #2
0
 extern internal static int GetTriggerParticlesWithData([NotNull] ParticleSystem ps, int type, [NotNull] List <ParticleSystem.Particle> particles, ref ParticleSystem.ColliderData colliderData);
コード例 #3
0
 internal static extern int GetTriggerParticlesWithData([NotNull("ArgumentNullException")] ParticleSystem ps, int type, [NotNull("ArgumentNullException")] List <ParticleSystem.Particle> particles, ref ParticleSystem.ColliderData colliderData);