TraceRacer.ParticleEngine.ParticleEngine C# (CSharp) 메소드

ParticleEngine() 공개 메소드

public ParticleEngine ( List textures, Vector2 location ) : System
textures List
location Vector2
리턴 System
        public ParticleEngine(List<Texture2D> textures, Vector2 location)
        {
            EmitterLocation = location;
            this.textures = textures;
            this.particles = new List<Particle>();
            random = new Random();
        }