VR Editor is a massive paradigm shift in level design efficiency,. I am VERY PLEASED to see a couple changes in the 'Editor Preferences/General/VR Mode menu!!!
PLEASE LET US KNOW THE WHAT/WHY/HOW/ETC.
The changes look to me much like the INPUT Panel, with the ability to add a … a ‘Blueprint’!! Ok, there are 2 options, in one one can add,. OH!! a 'VR Editor Interactor, so…like a BP that lets you customize how you… work INTERACT in VR Editor! There is one there (the default) called: ‘VREditorInteractor’ and you can add a new one, and when you do, it takes you into BP Editor,. . So that is the one that lets you work the way it is now,. so to change that,. I’d need to like, reverse engineer the existing one,… AHA!!! so I search for ‘VREditorInteractor’ in the Epic 4.22 folder and find:
VREditorInteractor.cpp
VREditorInteractor.h and
VREditorInteractor.generated.h (interesting!!) I double click" ‘VREditorInteractor.cpp’ and it opens Visual Studio (curiouser and curioser I have no idea what I’m doing,…) BUT:
It really looks like THIS IS A WAY TO CUSTOMIZE VR EDTOR,… make it the way one wants it (I was among the first to mod VR Editor, in 4.19, I made all the ‘grid lines’ (that come up when you select an object in VR Mode) INVISIBLE by finding the ‘material’ that was the ‘glowing grid’, then altering the ‘png’ it used, so it was just an empty invisible png,…
Protect Transparency indeed!!) BUT This is way beyond a simple substitution mod,. Hopefully not beyond me,… All I can do is try I guess,. I see stuff like:
AddKeyAction( EKeys::MotionController_Left_FaceButton3, FViewportActionKeyInput( VRActionTypes::TrackpadDown )
and:
bIsTouchingTrackpad( false ),
bIsPressingTrackpad( false ),
OH! Like that Hover thing the VIVE Wands do on the trackpad when you are not pushing!
and this one has some Human words!!!:
// If we’re hovering over something really close to the camera, go ahead and shrink the effect
// @Todo vreditor: Can we make this actually just sized based on distance automatically? The beam and impact point are basically a cone.
if (IsHoveringOverUI())
{
LaserPointerRadius *= VREd::LaserRadiusScaleWhenOverUI->GetFloat();
HoverMeshRadius *= VREd::HoverBallRadiusScaleWhenOverUI->GetFloat();
OOOOH! They are letting us into their programmer minds with //comments
MMuuuaaahh!
This part (below) looks like it relates to the problem (above) I had when trying to edit Blueprints in VR Mode using Touch Controllers,… (The BP windows would zoom all the way out and be uncontrollable, I solved it by buying a pair of VIVE Wands). (thinking they had perhaps created that section in the early days before TOUCH came along, Sure enough, it VR BP Editor is happy with a HTC track Pad!! Different things work better wit the different controller, which makes it all the more powerful actually,…):
// Stop transforming object to laser impact point when trying to slide with touchpad or analog stick.
if (InteractorData.DraggingMode == EViewportInteractionDraggingMode::TransformablesAtLaserImpact && !FMath::IsNearlyZero( SlideDelta, VREd::TrackpadStopImpactAtLaserBuffer->GetFloat() ))
{
InteractorData.DraggingMode = EViewportInteractionDraggingMode::TransformablesFreely;
}
WELL NO WONDER IT TOOK THEM SO LONG TO DO AN UPDATE, THAT IS SOME HARDCORE DEEP LEVEL CONTROL ADDED, and Very Complex programming, just the logistics of WHAT to do much less how must take forever to realize…
It is appreciated!
, I don’t really get it yet, maybe a little,… BUT Perhaps, eventually people will create new VR Editor Interactor Blueprints and VR Editor Teleporter blueprints like you can just recently get with VR ‘Controller Binding’ with Steam Community.
Very cool to see some things changing!
NOW if I could just edit a Procedural Splines by translating it’s vertex/nodes in VR Editor!! (or figure out what they Greyed out ACTIONS sections i for on the VR Pallette!)
THANK YOU LAURA and VR Editor CREW!!!