Well, that worked! I will keep that in mind for future reference. Rebuilt the plugin, loaded the project, and it shows up under the plugins list. Thank you so much for your help, it is most appreciated!
A question : how do I include the plugin header âAdvancedVoiceLibrary.hâ in my normal game source?
Cheers!
That works great! How is it possible to include the plugin header file âAdvancedVoiceLibrary.hâ into the normal source like in the playercontroller?
Cheers!
Does anyone know if this works fully with the Steam Spacewar test app 480?
I can make a server browser and find and join servers. But I cannot get Invite or join via steam to work. I can send an invite via steam, but that just closes the overlay and then does nothing, same if I click Join Game via steam. I also managed to find a friend who played it with the Get and Store Friends List node, then I tried to Find Friend Session but it failed.
Should it even work? Or have I just made something wrong?
Here is an example how to implement the steam friends interface: https://forums.unrealengine.com/showthread.php?69901-Advanced-Sessions-Plugin&p=374431&viewfull=1#post374431
There is everything good documented.
Yeah, I followed that and as far as I can tell everything is correctly set up. Do you know if it should work with Spacewar? Cause then I guess thereâs no other explanation than that I did something wrong.
[QUOTE=CaretCaret;475780]
Yeah, I followed that and as far as I can tell everything is correctly set up. Do you know if it should work with Spacewar? Cause then I guess thereâs no other explanation than that I did something wrong.
I tested everything with spacewar since I donât have an app ID myself. The only caveats that I am aware of are that spacewar doesnât work across country bounds (it is region locked) and that some features are a bit iffy since you donât technically âownâ the game.
I would have to re-test but I donât remember having any problems, are you sure that you are inheriting the game instance? Do you not even get the event pop in the game instance when invited? Attach a âprint stringâ to the âEvent on session invite acceptedâ node.
Wow! This is great!
So and what about implementing a header file from the plugin into gamesource?
[QUOTE=CLBander;475882]
So and what about implementing a header file from the plugin into gamesource?
I wouldnât do it, the source is entirely based around being used as a blueprint node library plugin. Because of this and some of the required structs being private and not accessible in a plugin I had to re-define some things and re-create parts of the subsystem to get it to work. Plus the layout and structure for it is entirely based around blueprint node usage.
If you want to make a c++ version, there are tutorials out there for that or you could use the source of the plugin as a rough example of parts.
In short, you donât want to use the source to this unless you want to use it as a blueprint library anyway, and at that point there is no reason to not leave it as a plugin.
Ok, I got it working, think it was something I did wrong with the event as you suggested. Thank you so much! And this plugin is the best!
(I used 4.10.3 if someone would ever want to know)
You know I just want to use the push to talk function in c++ because my player controller is in c++
[QUOTE=CLBander;476036]
You know I just want to use the push to talk function in c++ because my player controller is in c++
Just copy the code from the node over, there is also an example controller with âtoggle voiceâ that does the same thing.
Does anyone know if itâs possible to search for sessions while being in a session? I want be able to open a server browser while Iâm in a joinable session but the Find Session just fails after a few seconds.
[QUOTE=CaretCaret;476786]
Does anyone know if itâs possible to search for sessions while being in a session? I want be able to open a server browser while Iâm in a joinable session but the Find Session just fails after a few seconds.
No it is not, and as far as I am aware this is a Steam Specific thing and is intentional.
Hi, Thanks a lot for this tutorial.
Is there a way to access the volume of the push to talk in order to fade out the players that get far away ?
Thanks
[QUOTE=Pr Tesla;477429]
Hi, Thanks a lot for this tutorial.
Is there a way to access the volume of the push to talk in order to fade out the players that get far away ?
Thanks
There is no current built in way to do that in the engine with voice chat and they are overhauling the audio system so it would be a waste of effort to try and make one.
Right now the only real solution is a hard off/on.
Ok thanks for your quick reply
Is this already compatible with 4.10.3? First post only states 4.10.2 as of now
I have one problem. When Iâm using your plugin and trying to package project I get âUnknown Errorâ. When I disable it everything is fine. I donât have any idea how to make it work.