Influence Map system in the robots championship demo in Unreal Engine 5

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

Комментарии • 4

  • @Zzz-u6t
    @Zzz-u6t Месяц назад

    so you mean i can use this for item generation also using this influence map ?
    i want a video where you use influence map and EQS together< for finding location where to go and exact location from eqs .

    • @NoOpArmy
      @NoOpArmy  Месяц назад

      You can use both of them together and yes you can use it for item generation.
      Using EQS and imaps together makes sense in cases where you use imaps to find an area and then inside the area you use an EQS query to find an exact position but whey do you want them together? what is your use-case? Let us know more so we can provide a better answer.

    • @Zzz-u6t
      @Zzz-u6t Месяц назад

      @@NoOpArmy i want to use eqs because it have system that my ai wont stuck in a place and also not collide with wall things like visibility Tests, distance filtering etc

    • @NoOpArmy
      @NoOpArmy  Месяц назад

      @@Zzz-u6t Some of these are better done with navigation/path finding which we already use with our Ai in all of our demos. usage of EQS with imaps depend on what you use to write your main AI.
      If behavior trees then you have a node for finding the area using influence maps and then puting the position in the blackboard and then another node which using that does an eqs query around it to find the final position to move to.