Page 1 of 1

Dialogue System for Unity 2.1.0 Released

Posted: Mon Dec 17, 2018 8:29 am
by Tony Li
Dialogue System for Unity 2.1.0 is now available on the Pixel Crushers customer download site (PM me your Unity Asset Store invoice number if you need access) and should be available on the Unity Asset Store soon.

Version 1.8.8 is also available on the customer download site.

Version 2.1.0
Core:
  • Dialogue Editor:
    • Improved: Conversation title dropdown now fills available width of window to accommodate long titles.
    • Improved: Added Menu > Delete Conversation (alternative to right-click context menu).
    • Fixed: Newly created conversations sometimes didn’t appear in node editor.
  • Improved: Dialogue database reset/save/load performance optimization.
  • Improved: Added public accessors for ConversationModel’s cached display settings values.
  • Improved: Standard UI panels can now animate using legacy Animation as well as Mecanim Animator.
  • Fixed: LookAt() sequencer command rotation bug.
  • Fixed: ShowAlert(message,duration) now handles newline codes like ShowAlert(message).
  • Fixed: Float to string conversation is now culture invariant when using .NET4.
Third Party Support:
  • Inventory Engine: Added DialogueSystemInventoryEventListener.SetEventSystemNavigationEvents and SetInventoryInputManager to allow UI input outside of Inventory Engine.
  • Opsive Controllers: DialogueSystemInteractableTarget sets player as interactor if none specified; Can have multiple targets; Added uccLookAt() sequencer command; UCCSaver now observes spawnpoint for characters tagged as Player.

Re: Dialogue System for Unity 2.1.0 Released

Posted: Tue Dec 18, 2018 10:09 am
by Alatriste
Hi Tony,

A question regarding the changelog:

Fixed: ShowAlert(message,duration) now handles newline codes like ShowAlert(message).

Could you elaborate on how it works?

Thanks for the update!

Re: Dialogue System for Unity 2.1.0 Released

Posted: Tue Dec 18, 2018 10:46 am
by Tony Li
This fixes a bug. Dialogue System Trigger > Add Action > Show Alert lets you specify line breaks by adding the characters "\n". But it only worked if the Duration was set to 0. In version 2.1.0, it now works correctly with any Duration value.

Re: Dialogue System for Unity 2.1.0 Released

Posted: Tue Dec 18, 2018 1:39 pm
by Alatriste
Thanks!