VRTK 3.3 Oculus controllers not tracking - oculus

VRTK: 3.3
Unity3D: 2018.1.0f2
Oculus: SDK Oculus Utilities 1.27
SteamVR: 1.2.3
I started a project using Vive which is all up and running. Then I wanted to start working on getting Oculus up and running. For some reason, the Oculus controllers are not tracking at all. They don't even show up.
To help track down the issue, I opened up the VRTK_SDKManager_Constructor scene as instructed, I then loaded up the StraightPointer scene.
Still no oculus controllers are visible nor are they tracking. Also, when I click on the joystick on the oculus controller, I get a laser projecting, but it's not coming from the controller. It's coming out from behind the headset.
I've tried this on two different computers, two different Oculus headsets. Was hoping someone might have some insight into why the Oculus controllers are not working.
From my understanding, I am using the correct Oculus SDK.

had a similar issue. here is what helped me:
go to any working oculus example with hands (without vrtk)
find LocalAvatar object
export its children: DefaultHandMaterialManager and DefaultBodyMaterialManager as prefabs
import them to your VRTK project
insert their instances as children of LocalAvatar object (child of OculusVR object under SDKSetups)
go to LocalAvatar's 'OVR Avatar' script
set 'Default Hand Material Manager' and 'Default Body Material Manager' references to the objects you just created
hope this helps anyone

Related

How to move OVRPlayerController and OVRCameraRig together?

I am working on one Oculus project in that I am getting the following issue:
The OVRPlayerController is not moving along with OVRCameraRig. I am using the Unity version(2019.4.15f1) and OVRPlugin version (1.66.0).
I have added the CharacterCameraConstraint script to my OVRPlayerController but still I am getting the same issue.
Can anyone tell me how I can move the OVRPlayerController and OVRCameraRig together?
Thanks in advance.
You can install latest unity version 2020 and import Oculus integration V34 in Unity asset store.
Create a empty scene and create plane and place OVRPlayerController over the plane.
OVRPlayerController : Allows the player to move around in the vitual environment.It includes components and child objects that are necessary for 3D control. It includes OVRCameraRig prefab to serve as the VR camera and is attached to a character controller.

How to develop a module in dolibarr 13.0.1

I'm a Student and I'm doing my project of my final year to graduate. They ask me to develop a module of currency conversion in dolibarr 13.0.1 on ubuntu LST 20.04 but I didn't find any documentation helps me to know how to do that. Can anyone help me please?!
If you are still struggling with this, there is a built-in module builder in Dolibarr.
Go to Home > Setup > Modules/Applications and scroll to section
Multi-modules tools. There you have a module named "MODULE AND APPLICATION BUILDER".
After activation, you will see a spider icon at the top right of the screen. Clicking on it will take you to the page where you can create a new module, and add hooks, triggers etc. to it.
More information can be found on Dolibarr developer documentation

Exception Breakpoint fires when copying View Controller between projects

I've customized a tutorial and am trying to import it into my project. After copying one View Controller Scene from Document Outline into my main project, it's throwing an exception without any description of the issue. The View Controller is subclassed, so I've made sure to import the associated Swift file and set it in Document Attributes.
I don't know how to troubleshoot this one.
===EDIT===
I'm at a total loss here. I created a new project and was able to import, build, and run the project. The only difference between my main project and the new one is the VC is not the initial View Controller.
The tuturial was written in XCode 11 and Swift 4. I haven't upgraded yet, but again I was able to import into a new project w/o issue.
Check the Connections inspector (the last option on the right sidebar) and make sure there are no connections with exclamation marks (!) after them.
If there are errors, check in the Identity inspector (the third option from the left on the right sidebar) if the class of the view controller is correct.
If the connections are not needed anymore (you gave the outlet a new name etc.), remove them by clicking on the X next to them.

LibGDX: Gwt logging not working in my project

Don't worry, I'm not asking you to fix all my bugs, I just wanted to know common causes for gwt/html logging to not work.
Here is my project:
https://github.com/vedi0boy/Archipelo
I cannot get logging to work at all in html. I used this code in a brand new LibGDX project and it worked (inside the main class):
#Override
public void create () {
Gdx.App.setLogLevel(Application.LOG_DEBUG);
Gdx.app.log("Test", "Test log message.";
}
I just don't get it. Is there something common that could be making basic html/gwt functions not work? My libgdx is update to 1.9.2. I can't seem to figure out why it works on a new project but not mine.
What should I do? Should I attempt to copy all the code to a new project? Thanks.
P.S. I am also unable to use a networking library that I need, and it also works on a brand new project.
The solution was simple. I made a while loop that did not continue until a connection to the server was established. Since javascript is single threaded, it got caught in an infinite loop.
The reason this has to do with logging is because LibGDX only loads up the log box when create is finished being run and my infinite loop was in create so it never got around to rendering the logs.
Lesson: Don't treat JavaScript as a multi-threaded language when using GWT, because it isn't.
You don't need to copy all your code to a new project, if you have doubts about your LIBGDX version you can update your corruent project to a recent V of libgdx,
use the build.gradle like follow :
gdxVersion = "1.5.2" // your gdx version here
for more info read this topic in the official WIKI

Creating Log-normal distribution curves with Jstat using json data

There is no documentation for jStat. As of 2012-11-06 (per the documentation page): "The jStat API documentation is still being compiled."
I want to plot log-normal curves with JSON data. Can anyone who have worked on this throw some light on how to get started?
The project repo is at https://github.com/jstat/jstat
Current documentation for jStat is at http://jstat.github.com/
The webpage is using a version of jStat that is no longer worked on. The current project has focused on extending functionality so it is more easily integrated into your graphing library of choice. There is a simple UI repo (but hasn't been worked on much) at https://github.com/jstat/jstat-ui