Recent content by Justin

  1. Justin

    How to make shared variables come up as nested menu

    With the current design SharedVariables are not inherited. The logic behind this is because if you were to share the entire SharedCustomStats variable with multiple tasks then the same nested variables must also point to the same reference. Most of those variables look like they will stay...
  2. Justin

    Quick Start, Quick Stop and Quick Turn abilities

    It doesn't look like the ability is ending so it's not receiving the event. The start ability requires OnAnimatorStartMovementComplete. Did you add that event name? You can confirm by placing a breakpoint/log within QuickStart.OnStartComplete.
  3. Justin

    How to make top down style game's camera fixed when I move into an area with roof?

    That is the correct object. Within TopDown.cs add this condition on line 282 so the collision test never occurs: if (m_CollisionRadius > 0) { You'll then need to close the brackets on line 317. You are basically just preventing Physics.SphereCast from running. I will also include this in the...
  4. Justin

    Generic Reloader Cannot Reload

    Glad you are making progress. What is the stack trace of the null reference? Do you have a similar module setup as the assault rifle?
  5. Justin

    [Bug] Null Reference Exception caused by serialized list parameter in State Behavior

    Thanks for the report. It's having a problem casting source to IList<T>. You can fix this by changing the following within Preset.UpdateIList: var sourceList = source as IList<T>; var destinationList = destination as IList<T>; to...
  6. Justin

    How to make top down style game's camera fixed when I move into an area with roof?

    If you set the top down view type collision radius to 0 then it won't detect the collider.
  7. Justin

    How to use the right button for rotation camera in top down style game?

    You can change the button mapping for the right joystick/touchpad area if you are using the virtual controls integration. There isn't a mapping to reset the camera, for this you'll need to subclass the top down viewtype and add some code which resets the pitch/yaw to a specific rotation.
  8. Justin

    Quick Start, Quick Stop and Quick Turn abilities

    Check your animation events. Those animations require the OnAnimatorStopMovementComplete animation event to indicate when the ability should end. For the stop one you can adjust the sensitivity settings on the ability itself.
  9. Justin

    Flashlight attached to clothing - how?

    On the EquipUnequip ability for slot 0 you can specify the auto equip type. You can also manually call EquipUnequip.StartEquipUnequip(n) where n is your ItemSet. This page has more info...
  10. Justin

    Do I use states or abilities and how to I Implement them.

    This would be an ability. As a general rule states can change the values of a piece of functionality, but it cannot add new functionality. In this case the jump ability does not have a feature to move towards a target so it requires a new ability. If you have the agility pack I recommend taking...
  11. Justin

    Animator's "Slot0ItemStateIndex" parameter is the same for Equip and Unequip

    I just tried the demo scene and the value was switched to 5 when unequpping the assault rifle. Are you immediately unequipping the item which prevents the unequip animation from playing, or did you replace the animations and missed an event?
  12. Justin

    Add Roll Backward animation in Roll ability problem

    Did you add an animation event to indicate that the roll ability can complete? https://opsive.com/support/documentation/ultimate-character-controller/animation/animation-event-trigger/
  13. Justin

    Ultimate Steamworks Networking - Assets Project (Fish-Net, Mirror and Netcode)

    Congrats on the release @Pesadelo do Espantalho!
  14. Justin

    Thank you

    Awesome. I really appreciate you posting this! I'm very happy that Behavior Designer is working well for you. If you don't mind leaving a review on the Asset Store I'd appreciate it :)
  15. Justin

    PunLookSource possible bug

    Thanks, that looks like a good change.
Top