1.12.0
Minimum required version of Joint: 2.8.0 Recommended version of Joint: 2.8.2
Spotlighted
Dialogue Participant Module Item
Now Dialogue Participant component has a property named Participant Modules
, where you can put additional modules for the extended functionality of the component.
This has been introduced to lower the performance bottleneck of the system. We, of course can still use a bunch of components to implement a receiver or identification for the additional features, but adding a lot of components can be problematic for some instances (e.g. replication overhead, etc.)
For now, we only have BP_Joint_PM_NameWidgetVisual
that contains the visual of the name box of the participant on the widget.
Unfortunately, Modules doesn't support replication for now. We are considering adding that feature on the future update.
Dialogue Widget System Has Been Reworked
Customizing Dialogue Widget is one of the most difficult things to the users. Making a whole new widget for the system is quite easy, but the problem is, changing the old widget while making it compatible with the fragments related to it was almost impossible without deep understanding on the dialogue widget's structure.
And most importantly, we initially designed the dialogue widget related fragments as a sample of the system, so we didn't consider adding extensibility over those fragments. So the fragment worked with one specific widget class, and it became one of the main obstacles on the customization.
So, on this update, we decided to change the old framework.
Use Whatever Widget You Want with DF_DialogueWidget
Now DF_DialogueWidget
takes any kind of UUserWidget
class that inherits WBI_DialogueWidget
interface, instead of WB_DialogueWidget
specifically. You can set it to use any widget class you want to use as a dialogue widget!
WBI_DialogueWidget
is an interface that contains basic functions that dialogue widgets must provide. If you want to implement your very own dialogue widget for the system, then you must make your widget inherit this interface class as well, and override its interface functions to provide valid information to it.
Version 2 Dialogue Widget
Now we provide a little better version of WB_DialogueWidget
named WB_VER2_DialogueWidget
on the system.
DF_DW_Locator_FixOnScreen && Changed Dialogue Widget Locator Stop Following Speakers (Fix on the current world location)
We added a fragment that fix the dialogue widget on the screen! It also supports a very cool transition as well.
This is very useful for the traditional, screen fixed dialogue for your game.
You can specify the location where the widget will be rendered on the screen with Screen Coordinate
property.
(0,0) means the top-left conner of the screen, and (1,1) means bottom-right conner of the screen.
For example, if you set it (0.5,1), then the widget will be rendered on the middle-bottom of the screen, just like the old, common dialogue widget on the world. If you want to make it hang up on the screen like the sample image of Undertale, setting it to (0.5,0) will produce the same visual.
You can set Immediately Snap
to make it immediately snap to the screen without transition.
We thought we already added this one, but it turned out not. But here it is now!
We also changed the logic of Dialogue Widget Locator Stop Following Speakers, and changed its display name to Dialogue Widget Locator Stop Following Speakers (Fix on the current world location)
Now it works with both mode (screen rendering, world rendering), resulting the widget to be fixed on the screen right away.
Try this out on the screen rendering mode. This is one of the coolest features of the dialogue widget locator. Maybe this effect will leave some good impression to your players.
Dialogue Portrait
Dialogue widgets now can have portraits for the characters! for this feature, we provide 3 different fragments for the system:
DF_DW_Portrait
A fragment that contains the portrait widget and data for the portrait. You can provide the images that your portrait widget must use here.
This fragment is recommended to be placed on the participant fragment, because DF_DW_Portrait_FollowSpeakerAndListener
use the parent participant for the identification.
DF_DW_Portrait_FollowSpeakerAndListener
A fragment that updates the portrait widgets according to the parent Speaker & Listener Fragment's participant setting.
This must be placed on the Speaker And Listener Fragment. Otherwise, it won't work correctly.
You can change its settings to manipulate the widget visual of the portraits and locations of them:
- Flip for Listeners: If true, it will flip the scale of X to -1 of render transform of the listener portraits to make it looks flipped over.
- Display Listeners: If true, it will display the listener portraits.
- Margin for Each Speaker: it indicates the amount of spacing that will be applied between each speaker portrait's render position.
- Margin for Each Listener: it indicates the amount of spacing that will be applied between each listener portrait's render position.
- Speaker Portrait Offset : it indicates the initial position offset of the speaker portraits
- Listener Portrait Offset : it indicates the initial position offset of the listener portraits
You must provide Dialogue Widget's reference to the fragment to make it work.
DF_DW_UpdatePortrait
Update the provided portrait fragment with provided update data.
It's not mandatory to be placed on the speaker and listener.
Each update will happen only when the corresponding update flag (boolean) is checked.
- PortraitImageKey: The name key of the portrait brush it will use.
- PortraitWidgetRenderTransform: The widget transform that will be applied on the portrait widget itself.
- PortraitRenderTransform: The widget transform that will be applied on the portrait image.
- PortraitRenderOpacity: The widget opacity that will be applied on the portrait image.
- PortraitColor: The color of the portrait image.
Changed
DF_SpeakerAndListener' function signature has been changed
GetAllSpeakers
and GetAllListeners
has been changed to GetSpeakerParticipants
, GetListenerParticipants
.
Please update your code or assets to use the new function instead.