Rounded Primitive/Component for A-Frame to get a rectangle with rounded edges. This is great if you need to get smooth edges in your VR UIs.
Note: If you need more control you can check https://github.com/fernandojsg/aframe-slice9-component but the corners will be pixelated (that is why I wanted to use another method to create smooth edges).
<a-rounded position="0 1.2 -5" width="4" height="3.1" radius="0.05"></a-rounded>
Name | Description | Type | Default |
---|---|---|---|
width | Width of the container | number | 1 |
height | Height of the container | number | 1 |
radius | Border radius of the container | number | 0.3 |
top-left-radius | Border radius of the container | number | -1 (inherit) |
top-right-radius | Border radius of the container | number | -1 (inherit) |
bottom-left-radius | Border radius of the container | number | -1 (inherit) |
bottom-right-radius | Border radius of the container | number | -1 (inherit) |
color | Color of the container. | color | "#F0F0F0" |
opacity | Opacity of the container | opacity | 1 |
First make sure you have Node installed.
On Mac OS X, it's recommended to use Homebrew to install Node + npm:
brew install node
To install the Node dependencies:
npm install
To serve the site from a simple Node development server:
npm start
Then launch the site from your favourite browser:
If you wish to serve the site from a different port:
PORT=8000 npm start
Distributed under an MIT License.