How to use
In this section we will discuss how you can use ApertusVR's main features from Android and Java
Overview
Event connection
class MyEventCallback implements apeEventCallback {
@Override
public void onEvent(apeEvent event) {
// do sth with event
}
}MyEventCallback eventCallback = new MyEventCallback();apeEventManager.connectEvent(apeEvent.Group.NODE, eventCallback);private static Map<apeEvent.Group, LinkedList<apeEventCallback>> mEventMapEntity wrappers
Getting access to entities
Creating an entity
Deleting entities
Last updated