Available on the class repo at tag homework-02-10.
Zip up your submissions with your NYU id as the file name (e.g. rn47.zip) and upload them to this google drive folder by next class. Include comments to explain your reasoning or struggles. Remember that your best efforts and attempts are what counts the most! We will discuss this on Monday.
Using what we started in class write a fire effect by adding manipulating the size, color, opacity, and position of the particles over time.
Add the following code to Program.cs
to enable additive blending which we haven't talked about but will look at next week.
p.BlendingFunction.SourceFactor = BlendingFactor.SrcAlpha;
p.BlendingFunction.DestinationFactor = BlendingFactor.One;
How many particles can you push before quality degrades?