Very nice.
Announcement
Collapse
No announcement yet.
VR Expansion Plugin
Collapse
X
-
Originally posted by mordentral View PostPushed another patch to both the template and the plugin, left some control booleans true for the VRCharacter that are intended just for the simplecharacter. Sorry to anyone that got instantly sick from the broken neck effect.
It seems like if I am angled down looking at something in the viewport and then I enter VR Preview, my pawn and chaperone boundaries come in angled (Broken Neck?) as well until I teleport and then it straightens out.
Comment
-
Originally posted by jonathan_eiger View PostIs this why when I start VR Preview, my pawn is tilted sideways until I teleport and then it straightens up.
It seems like if I am angled down looking at something in the viewport and then I enter VR Preview, my pawn and chaperone boundaries come in angled (Broken Neck?) as well until I teleport and then it straightens out.
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
Originally posted by mordentral View PostIf the actor is a grippable actor then set bDenyGripping to true in the interface properties. If it isn't but still uses the interface just return a boolean from the denygripping function. Either way you can set it dynamically.Andy Probst
Head of R&D / VR - Meilenstein Digital GmbH
Comment
-
Originally posted by mordentral View Post
...I think I was going to tackle armswing and running in place motion next, I don't really like either of them but they are quick to implement and I know that many do like them (again though, they are a purely blueprint implementation, not really a plugin addition).
Your work is amazingly good. Thank you muchly.
Comment
-
Another question,
can someone please explain how to get the hand-animation back ?
I need it urgently and cant figure out how, my try to copy the blueprint functions from the original ue-vr-template does not work at all and i´m afraid to screw up everything in my project =/
A step by step or a vid would be awesome !!
Thanxx
AndyAndy Probst
Head of R&D / VR - Meilenstein Digital GmbH
Comment
-
Originally posted by MoeBadah View PostThe repository doesn't include climbing yet. Am i missing something? also great work man this is a life saver!!
I didn't want to keep engine #define checks around for the life of the plugin compiling different code just for 4.14. This normally isn't required, there have just been two major engine base overhauls recently that screwed with version compatibility.
When 4.15 officially releases I am going to merge that alpha branch into the master one. People wanting the climbing system in 4.14 going forward could manually pull in the commits related to it if they wanted to.
You can get seperate downloads for each branch at the following locations
Plugin
https://bitbucket.org/mordentral/vre...s?tab=branches
Template
https://bitbucket.org/mordentral/vre...s?tab=branches
Originally posted by andyxor View PostAnother question,
can someone please explain how to get the hand-animation back ?
I need it urgently and cant figure out how, my try to copy the blueprint functions from the original ue-vr-template does not work at all and i´m afraid to screw up everything in my project =/
A step by step or a vid would be awesome !!
Thanxx
Andy
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
Pushed a new commit to the plugin and the template for 4.15 alpha branches
Some of these things still need some additional testing, may roll out another commit tonight after I can fully run through them.
Code:Fixed Important bug in DropGrip with the optional velocity variables and their order of use Added naive Lerped smoothing to motion controller replication, bSmoothReplicatedMotion controls it, should not be used if the expected FPS frame time is smaller or equal to the motion controllers update rate. Added bReplicateWithoutTracking to use for FPS or testing characters to allow replicating custom controller movements. Added climbing movement toggle directly into Movement Component, now is injected into FSavedMove and replicated with stored movements this should remove any hitching when moving between climbing or non climbing movement modes as a client. Removed FBPReplicatedTransform's use of a packed BYTE for replicating controller ROLL, was not accurate enough. Now uses a packed SHORT just like the other two axis's Added an Unpack() function to FBPReplicatedTransform, used to pre-unpack location / rotation so the new lerp is less CPU costly (at the cost of a FVector / FRotator extra per motion controller in memory).
Last edited by mordentral; 02-10-2017, 09:35 PM.
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
hi Mordentral, first of all many thanks for your fantastic plugin.
I'm trying to animate my full body skmesh not only when player moves using motion controller dpad (full locomotion - works fine), but also whenever player is moving on his roomscale space... camera and mesh are locked together so I can't use add movement input to animate my mesh.
Any smart ideas?
thanks again
c.
Comment
-
Originally posted by Curs0 View Posthi Mordentral, first of all many thanks for your fantastic plugin.
I'm trying to animate my full body skmesh not only when player moves using motion controller dpad (full locomotion - works fine), but also whenever player is moving on his roomscale space... camera and mesh are locked together so I can't use add movement input to animate my mesh.
Any smart ideas?
thanks again
c.
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
Just looking at how to install this. I think the plugin is at this repo?: https://bitbucket.org/mordentral/vre...n/wiki/browse/
Not following this part:
"If you do not have c++ code, use the Add New button in the editor and add a blank c++ class to your project".
Do I create an empty blank class?
Could someone please give details on how to set it up?
Comment
-
Originally posted by superme2015 View PostJust looking at how to install this. I think the plugin is at this repo?: https://bitbucket.org/mordentral/vre...n/wiki/browse/
Not following this part:
"If you do not have c++ code, use the Add New button in the editor and add a blank c++ class to your project".
Do I create an empty blank class?
Could someone please give details on how to set it up?
Without pre-compiling all of the binaries and installing in the engine directory (not willing to do this myself while doing lots of work on the plugin) this is sadly a requirement.
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
-
Consider supporting me on patreon
My Open source tools and plugins
Advanced Sessions Plugin
VR Expansion Plugin
Comment
Comment