This is the core-addon for the Vuforia Spatial Edge Server. It provides a baseline set of blocks, interfaces, nodes, and tools to the Edge Server. The server loads code from blocks, interfaces, and nodes. The editor user interface loads blocks, nodes, and tools.
The Vuforia Spatial Toolbox and Vuforia Spatial Edge Server make up a shared research platform for exploring spatial computing as a community. This research platform is not an out of the box production-ready enterprise solution. Please read the MPL 2.0 license before use.
Join the conversations in our discourse forum if you have questions, ideas want to collaborate or just say hi.
Logic blocks available in the data crafting board.
Hardware interfaces which translate between the hardwareInterface.js API and the hardware.
Programming nodes associated with an object that can produce and consume values.
Tools which the user can place on objects or float in world space to provide useful interactions.
Low-level scripts placed directly into the user interface's context as if they were part of the editor's code.
This repo contains examples for blocks, interfaces, nodes, and tools. Content scripts are more niche but a simple "hello world" example looks like this:
(function() {
function initService() {
let messageDiv = document.createElement('div');
messageDiv.style.position = 'absolute';
messageDiv.style.left = 0;
messageDiv.style.top = 0;
messageDiv.style.fontFamily = 'sans-serif';
messageDiv.style.fontSize = '12px';
messageDiv.style.color = 'cyan';
messageDiv.style.pointerEvents = 'none';
messageDiv.textContent = 'Hello world!';
document.body.appendChild(messageDiv);
}
realityEditor.addons.addCallback('init', initService);
}());
The Kepware Interface is compatible with both KEPServerEX and Kepware Edge.
- Enter the Hardware Interfaces tab on the Vuforia Spatial Edge Server Web UI.
- Enable the Kepware interface.
- Enter in your connection details and save your changes.
- On your KEPServerEX or Kepware Edge server, browse through the rejected certificate list and accept the most recent certificate. This process differs between the two servers, so consult the corresponding User Manual (available at https://www.kepware.com/en-us/products/kepserverex/ and https://www.kepware.com/en-us/products/thingworx-kepware-edge/ respectively).
- Refresh the page after a moment to see the available tags.
- Select the tags you want to use and save your changes.
- (Optional) You can also filter the tag results if you are looking for a specific tag.
- The tags you selected will now be available in the Spatial Toolbox!