i use normal engine what ist better from 4.20 downgrade to 4.19 or upgrate to 4.21 with your plugin?
Announcement
Collapse
No announcement yet.
VR Expansion Plugin
Collapse
X
-
Originally posted by Simply Clueless View PostThis plugin looks amazing! I just took a look at the download and saw "VRExpansionPlugin" and "OpenVRExpansionPlugin". Just wanted to check what the differences were before I dived into it.
The core of the plugin is all in the VRExpansionPlugin
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
Originally posted by alex_smidt View Posti use normal engine what ist better from 4.20 downgrade to 4.19 or upgrate to 4.21 with your plugin?
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
Hello!
I have a problem. I am running plugin version 4.21. I just now noticed that there is a problem when I quickly double click "Use" button. When I double click, the object that I am interacting with stops working all together. For example, if I go near lever and press button I can pull it normally, but if I quickly double click to it, it stops working and I cannot interact it anymore. The Interface call "IsHeld" starts to always return true.
Same thing happens with pickables, doors etc. Basically with everything that is using the Interface. Any ideas what might cause this? I have been trying to find the bug, but have been unsuccessfull. Is there something wrong with Plugin or is maybe there is something in my code that causes this.
Comment
-
Originally posted by Frisco View PostHello!
I have a problem. I am running plugin version 4.21. I just now noticed that there is a problem when I quickly double click "Use" button. When I double click, the object that I am interacting with stops working all together. For example, if I go near lever and press button I can pull it normally, but if I quickly double click to it, it stops working and I cannot interact it anymore. The Interface call "IsHeld" starts to always return true.
Same thing happens with pickables, doors etc. Basically with everything that is using the Interface. Any ideas what might cause this? I have been trying to find the bug, but have been unsuccessfull. Is there something wrong with Plugin or is maybe there is something in my code that causes this.
If it is "stuck" in "isheld" then it never got a drop command that it needed and is still gripped. That or you are manually calling SetHeld yourself which you should not be doing, I noticed that I had left that BP accessible when I was porting 4.22 and I closed it off, it was supposed to be a back end only interface function.
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
I'm running into an issue with the Niagara particle plugin. For some reason, the particles are only rendering in one eye. I haven't been able to find a solution, and this issue does not occur when using the Niagara particle plugin outside of the VR Expansion Plugin. I really need help with this, I've been having this issue for a long time, and updating UE4, the VR Expansion Plugin, and the Niagara plugin has not fixed the issue yet.
Comment
-
Originally posted by homsar View PostI'm running into an issue with the Niagara particle plugin. For some reason, the particles are only rendering in one eye. I haven't been able to find a solution, and this issue does not occur when using the Niagara particle plugin outside of the VR Expansion Plugin. I really need help with this, I've been having this issue for a long time, and updating UE4, the VR Expansion Plugin, and the Niagara plugin has not fixed the issue yet.
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
I'm using the VRExpansionPlugin in UnrealEngine 4. Steps I've taken- Created a new "Default" level within the template project provided by the VRExpansionPlugin.
- Added a NavMeshBoundsVolume to the level.
- Deleted the existing "Player Start" and replaced it with the "VRPlayer Start".
I would expect that when I "Play" the level I should be able to point at the ground and teleport around, but instead I just see the short blue teleport line that almost immediately cuts off.
I know that I am missing a step (probably only one) but I'm not sure what step I am missing. Also, I can't find any documentation to help figure out what I am missing. So, with that said, what am I missing to enable teleport movement in my UE4 VRExpansionPlugin VR project?
Comment
-
Quick question: Using the VRLever component I can't find a way to set the Current Angle. Looking for "Set Angle" I find "Set Dial Angle" under the VRLeverComponent, but that seems to be in the wrong place. Is this something that is fixed in a newer version maybe? The plugin that I'm using now is from and of January.
Comment
-
Originally posted by Warner V View PostQuick question: Using the VRLever component I can't find a way to set the Current Angle. Looking for "Set Angle" I find "Set Dial Angle" under the VRLeverComponent, but that seems to be in the wrong place. Is this something that is fixed in a newer version maybe? The plugin that I'm using now is from and of January.Code:/** * Sets the angle of the lever forcefully * param NewAngle The new angle to use, for single axis levers the sign of the angle will be used * param DualAxisForwardVector Only used with dual axis levers, you need to define the forward axis for the angle to apply too */ UFUNCTION(BlueprintCallable, Category = "VRLeverComponent") void SetLeverAngle(float NewAngle, FVector DualAxisForwardVector)
Before that people were setting the angle manually and then calling Re-calculate lever angle.
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
Originally posted by mordentral View Post
Code:/** * Sets the angle of the lever forcefully * param NewAngle The new angle to use, for single axis levers the sign of the angle will be used * param DualAxisForwardVector Only used with dual axis levers, you need to define the forward axis for the angle to apply too */ UFUNCTION(BlueprintCallable, Category = "VRLeverComponent") void SetLeverAngle(float NewAngle, FVector DualAxisForwardVector)
Before that people were setting the angle manually and then calling Re-calculate lever angle.
Comment
-
Originally posted by NotADesigner View PostI'm using the VRExpansionPlugin in UnrealEngine 4. Steps I've taken- Created a new "Default" level within the template project provided by the VRExpansionPlugin.
- Added a NavMeshBoundsVolume to the level.
- Deleted the existing "Player Start" and replaced it with the "VRPlayer Start".
I would expect that when I "Play" the level I should be able to point at the ground and teleport around, but instead I just see the short blue teleport line that almost immediately cuts off.
I know that I am missing a step (probably only one) but I'm not sure what step I am missing. Also, I can't find any documentation to help figure out what I am missing. So, with that said, what am I missing to enable teleport movement in my UE4 VRExpansionPlugin VR project?
I wanted to post the solution to my problem in case anybody else was a newbie like me and ran into this.
Comment
-
Been trying to make a method for a player to scale them selfs up or down (VR immersion aside) with the vive character class. while leaving the scale of the skeleton the same, that is attached to the root reference.
tried scaling the netsmoother but when grabbing objects the object inherits the netsmoother scale, and that method didnt seem rather elegant.
Anyone have a thought on how to achieve this?Last edited by Rareden; 03-14-2019, 02:07 AM.
Comment
-
Originally posted by Rareden View PostBeen trying to make a method for a player to scale them selfs up or down (VR immersion aside) with the vive character class. while leaving the scale of the skeleton the same, that is attached to the root reference.
tried scaling the netsmoother but when grabbing objects the object inherits the netsmoother scale, and that method didnt seem rather elegant.
Anyone have a thought on how to achieve this?
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
Comment