making of delta building visualization enviorment w
play

Making of Delta Building Visualization enviorment w/ Compute - PowerPoint PPT Presentation

Making of Delta Building Visualization enviorment w/ Compute Shaders Kristo Mnna Who am I Hobbyist solo game developer Unity3D Project POMPEII Delta building visualization project Who am I Hobbyist solo game developer Unity3D Who am I


  1. Making of Delta Building Visualization enviorment w/ Compute Shaders Kristo Männa

  2. Who am I Hobbyist solo game developer Unity3D Project POMPEII Delta building visualization project

  3. Who am I Hobbyist solo game developer Unity3D

  4. Who am I Hobbyist solo game developer Unity3D Project POMPEII

  5. Who am I Hobbyist solo game developer Unity3D Project POMPEII Delta building visualization project

  6. Topics What are compute shaders Introduction to compute shaders (using Unity) Breakdown of Delta Building Visualization effects

  7. Topics What are compute shaders Introduction to compute shaders (using Unity) Breakdown of Delta Building Visualization effects

  8. Topics What are compute shaders Introduction to compute shaders (using Unity) Breakdown of Delta Building Visualization effects

  9. Topics What are compute shaders Introduction to compute shaders (using Unity) Breakdown of Delta Building Visualization effects

  10. What are compute shaders? GPU is very good at parallel processing (like really good) This power is underutilized

  11. What are compute shaders? GPU is very good at parallel processing (like really good) This power is underutilized Thats where Compute Shaders come in

  12. What are compute shaders? GPU is very good at parallel processing (like really good) This power is underutilized Thats where Compute Shaders come in Use GPU for other things besides graphics

  13. What are compute shaders? GPU is very good at parallel processing (like really good) This power is underutilized Thats where Compute Shaders come in Use GPU for other things besides graphics

  14. How to use a Compute Shader

  15. How to use a Compute Shader Normal code vs. cs code

  16. How to use a Compute Shader

  17. How to use a Compute Shader

  18. How to use a Compute Shader

  19. How to use a Compute Shader

  20. How to use a Compute Shader

  21. When to use compute shaders A lot of operations that can be done in parallel

  22. When to use compute shaders A lot of operations that can be done in parallel

  23. When to use compute shaders A lot of operations that can be done in parallel

  24. When to use compute shaders A lot of operations that can be done in parallel

  25. When to use compute shaders A lot of operations that can be done in parallel

  26. Quick demo Batch rendering in unity

  27. Quick demo - Batch rendering in unity - 100 x 100 = 100 000 objects - GPU: GTX 1070 TI

  28. Quick demo - Batch rendering in unity Standard rendering - 100k Capsule GameObjects - 30-40 fps - Can use Unity’s static batching - Best approach for lower end GPUs

  29. Quick demo - Batch rendering in unity GPU Instanced rendering - 100k Capsule GameObjects - GPU Instancing enabled shaders - 50-60 fps - For lower end about the same performance as Standard - For Mid-Higher end meaningfully better

  30. Quick demo - Batch rendering in unity Manual Instanced rendering - 100k Capsule meshes - Custom shaders - must call draw from code - 300-600 fps - For lower end can be worse that previous methods - For Mid-Higher end way better

  31. Quick demo - Batch rendering in unity Manual Instanced rendering - 1 Million quads - Simpler, smaller mesh improves performance - Lighter shader improves performance

  32. Delta Building Visualization project (DBV)

  33. DBV effects - Individually animated crowd rendering - Bonus: Bubbles - 1 million grass object rendering - Cloud shadows - Dynamic snow tracks - Falling snow

  34. DBV effects - Individually animated crowd rendering - Bonus: Bubbles - 1 million grass object rendering - Cloud shadows - Dynamic snow tracks - Falling snow

  35. DBV effects - Individually animated crowd rendering - Bonus: Bubbles - 1 million grass object rendering - Cloud shadows - Dynamic snow tracks - Falling snow

  36. DBV effects - Individually animated crowd rendering - Bonus: Bubbles - 1 million grass object rendering - Cloud shadows - Dynamic snow tracks - Falling snow

  37. DBV effects - Individually animated crowd rendering - Bonus: Bubbles - 1 million grass object rendering - Cloud shadows - Dynamic snow tracks - Falling snow

  38. DBV effects - Individually animated crowd rendering - Bonus: Bubbles - 1 million grass object rendering - Cloud shadows - Dynamic snow tracks - Falling snow

  39. 2000 Animated Agent rendering Requirements: - max 2000 actors → max visible actors ~1500 - Every actor has animations - Need to render them all

  40. 2000 Animated Agent rendering Naive approach: 1. Have two gameObject pools a. Far away actors b. Close animated actors 2. Based on distance to camera render actors with objects from first or second pool - Very slow for 50+ animators

  41. 2000 Animated Agent rendering Used approach: 1. Bake animations to a texture 2. Only have one pool for all actors 3. Render visible actors with that pool

  42. Bubbles Requirements: - Actors sometimes create bubbles - Bubbles are animated - max 500 bubbles at once Used approach: - GPU instanced billboard shader - Bubble pool - Simple procedural scale animations

  43. 1 Million grass object rendering Requirements: - There is some grass outside the building - Would be nice if it looked like real grass - Need to handle 1 million grass objects

  44. 1 Million grass object rendering Naive approach: 1. Place down GPU instanced grass GameObjects 2. Let unity handle culling and batching Works okay for sub 10 000 grass objects ...but we need 1 million

  45. 1 Million grass object rendering Used approach: 1. Bake grass object positions 2. Using compute shader apply: a. Frustum culling b. Distance culling c. 3D dither distance culling 3. Render visible with Graphics.DrawMeshInstanced()

  46. 1 Million grass object rendering

  47. 1 Million grass object rendering

  48. 1 Million grass object rendering

  49. Cloud shadows Requirements: - Would be nice if could visualize cloudiness somehow Naive approach: - Use Unity’s projector component to render cloud shadows onto ground - Will have to affected objects twice Used approach: - Same as naive - Ok since only one object to re-render

  50. Cloud shadows

  51. Dynamic snow tracks Requirements: - Would be nice if could visualize snow tracks for actors - Will need to create tracks for 2000 actors every frame

  52. Dynamic snow tracks Used approach: 1. Send actor positions to compute shader 2. Draw to splatmap 3. Tessellate a plane 4. Use vertex displacement

  53. Dynamic snow tracks Requirements: - Would be nice if could visualize snow tracks for actors - Will need to create tracks for 2000 actors every frame

  54. Dynamic snow tracks

  55. Dynamic snow tracks

  56. Snowflakes Naive approach: - Use Unity’s particle system - Very slow for 1000+ particles since CPU based

  57. Snowflakes Used approach - Using compute shader cull and apply velocity to particles - Use DrawMeshInstanced() to draw visible snowflakes

  58. Conclusion Learned about: 1. Compute shaders 2. How and where to use them 3. Breakdown of some simple DBV effects

  59. Any final questions?

  60. Peace!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend