I'm aware that 2d physics pathfinding isn't a thing on ork framework, but 3d pathfinding seems to be implemented in the 3d examples...

Since both 2d animation and 3d animation are handled within mechanom simultaneously even though only one type is usually used per project,,,

Is it possible to use 2d sprite animations in place of 3d models on the 3d example projects?

(And just setting the camera on a pure top down orthographic view, but with the XZ "default Horizontal Plane" set, because it's actually on 3d phisics)

(So it would just look like normal 2d top down perspective for the player, but it would actually be 3d phisics with working pathfinding underneath the surface)
  • ORK doesn't include any pathfinding (other than on battle grids) - the 3D tutorials use Unity's NavMesh for pathfinding.
    For 2D, you can use extensions to support 3rd party solutions, e.g. PolyNav 2D. Not sure if A* pathfinding also supports 2D.

    Check out this tutorial for 2.5D setup (i.e. 2D sprites in a 3D world).
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
  • Bruh!!! So the 2.5d setup uses unity navmesh pathfinding too?

    The pathfinding on the arpg example tutorial would be just fine! If that works on 2.5d, that might just be what I been looking for, for for years (as most 2d asset packs I have found and bought don't have any type of pathfinding, but pretty much all top down 2d games I played in the last few years clearly have pathfinding... It's been frustrating seeing this frfr)

    I'll check it out
  • I looked at it. It might be what I wanted... The trick will just be making the background 2d too.... But I guess if billboardind is native on ork, I could pull the rest off too...
  • edited September 3
    Orochimaru said: Bruh!!! So the 2.5d setup uses unity navmesh pathfinding too?
    Yes, because it's basically 3D, just having 2D sprites on the 3D combatants for visuals :)

    There are some 2D pathfinding solutions available in the Asset Store - there's currently only an integration for PolyNav 2D (as mentioned above), though. Let me know if there's some other 2D pathfinding you want to use and I can look into adding an integration for it.
    Post edited by gamingislove on
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
  • My goal would be to completely convert the 3d arpg tutorial template to 2.5d (player character, enemies, obstacles and ground etc.

    But before I can see doing all that, I need to know how to do a few things that aren't in that tutorial.

    1. Add abilities to the player and a way to let the player learn and collect more abilities as they play (like in the other tutorials but...), and MOST IMPORTANTLY, set up a shortcut/hotkey system with click/touch to cast ,... (Like on Diablo immortal etc) (I haven't seen that type of system in ork yet...)

    2. Tweak the AI to make higher level decisions and actions... (I'm guessing schematics could be used trick out the enemy AI to a high level... Maybe?)

    3. Creat spread-shot projectiles and bullet-hell style attacks (gungeon, Archero etc)
  • The 3D action RPG tutorial is only focusing on action combat. All the other things are part of other tutorials, e.g. a bit in the quickstart series or the full course of status system setup and 3D RPG playground tutorials.

    1) Well, as said, those are part of the other tutorial series, though the 3D action RPG also shows how to create abilities, add them to the player and even how to use control maps with them.
    For such a shortcut HUD as you mentioned, check out this UI tutorial on creating exactly that.

    2) Depends on what those higher level decisions should be :)
    Generally, the Battle AI us only used for selecting battle actions and the Move AI is used for detecting and moving to a target. Both can work together, e.g. the battle AI can check the move AI for detected targets to only use actions on those, or the actions will use the move AI to move into use range.
    Anything else can be done as part of your actions, via their schematics animating them.

    3) This is similar to the grenade in the action RPG.
    In short:
    - prefab for your projectile with damage dealer on it
    - schematic of the action spawns prefab
    - schematic activates damage dealer on prefab
    - schematic moves the prefab in the direction you want (e.g. forward direction of the user)
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
  • Hmmm this will be tricky. Thanks for the info tho. I'll look into all of this. I'm planning on making an action RPG style game after the the turn based one, and I would prefer to just stick with ork as I'm slowly learning all the systems and work flow...

    Again thanks for the info...
Sign In or Register to comment.