igda unity sig ii
play

IGDA Unity SIG II AI in Unity Emil AngryAnt Johansen Unity - PowerPoint PPT Presentation

IGDA Unity SIG II AI in Unity Emil AngryAnt Johansen Unity Technologies AI in Unity Sensors Decision logic Navigation Sensors Active "Passive" Message driven Second pass filtering Additional sensors or inclusion areas


  1. IGDA Unity SIG II AI in Unity Emil “AngryAnt” Johansen Unity Technologies

  2. AI in Unity Sensors Decision logic Navigation

  3. Sensors Active "Passive" Message driven Second pass filtering Additional sensors or inclusion areas

  4. Active Using Physics.OverlapSphere Iterating list of target objects

  5. Using Physics.OverlapSphere Entities already represented in the physics simulation Filter by layer mask Cheap radius check Manual physics checks are expensive

  6. Manual physics checks are expensive Do not check each frame Regular physics run at a fixed framerate of 20 fps per default Adapt polling frequency to when the data is needed. Setting up the sensor as a service for the behaviour logic to use is a good best practice

  7. Iterating list of target objects Central registry Objects of interest register with a singleton OnEnable and unregister OnDisable Sensors filter through this list when needed Registry can do early sorting and grouping based on meta data Object.GetObjectsOfType

  8. “Passive” Using physics triggers The physics simulation is running anyway, being clever about polling and prediction Requires either extra manual setup of the transform tree or initialization work You are served the data whether you need it or not Use layer filtering via the layer mask table or Physics.IgnoreCollision Most likely need to forward collision information from a child GO to the central sensor logic Radar structure

  9. Message driven Central monitor Polling and interpreting state changes on monitored subjects Redirection of messages from clients Relative broadcast Using active sensor to determine target audience Transmitting messages to each member

  10. Second-pass filtering Limit object list based on meta data Tag filtering - more expensive than layer mask, but operating on already filtered data set Component based sorting - GetComponent

  11. Second-pass filtering Visibility cone Vector3.Angle ( transform.forward, targetTransform.position - transform.position ) < coneAngle * 0.5f

  12. Additional filters or inclusion areas Proximity overriding visibility cone "Audio" / event sensor Crowd influence - dispersal and relaxation

  13. Decision logic Whatever is wrong with a bunch of nested if-statements? Useful state machine setups Available middleware

  14. Whatever is wrong with a bunch of nested if-statements? It is just logic after all Systems handle abstraction and help keep you sane Does the term "spaghetti code" mean anything to you?

  15. Useful state machine setups FSM combines state tracking and handling Simple to understand system Very slim implementation

  16. Example: enum + switch in AI update + function call

  17. Example: enum + delegate + dictionary in abstract class

  18. Available middleware Why? Additional abstraction. Shortens the distance between idea and implementation PlayMaker [video] Behave [demo]

  19. Demo: Behave

  20. Navigation Setting up simple pathes Available middleware

  21. Setting up simple pathes Linking transforms via linked list of node components Keep track of next node Adjust force or direction vector to fit - slerp Basic steering

  22. Available middleware Aron Grandberg "A * Pathfinding" Path UnitySteer

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