Page 1 of 1

Feature request for UCC integration

Posted: Mon Mar 29, 2021 3:04 am
by christianwiele
Hi,

I am using DS with UCC and the PUN add-on for multiplayer. The system is basically working but I have one request. Right now it is possible that multiple players can talk independently to a single NPC at the same time. I would like to prevent this, so that at the same time only one player can talk to a specific NPC. This is not possible as the CanInteract method in the DialogueSystemTriggerInteractableTarget class always returns true. I cannot inherit from this class as the method is not overridable. So the only way is to copy the class which is not so nice. Is it possible that you mark the method virtual so it becomes overridable, and I can inherit from the class?

Thanks, Christian

Re: Feature request for UCC integration

Posted: Mon Mar 29, 2021 9:20 am
by Tony Li
Hi Christian,

Done! I just sent off the updated integration to Opsive. Both methods (CanInteract and Interact) are now virtual, and the player property is protected.

Re: Feature request for UCC integration

Posted: Mon Mar 29, 2021 11:05 am
by christianwiele
Thanks a lot !