An open API service indexing awesome lists of open source software.

https://github.com/johncoene/ashake

📦 shake2show for aframer
https://github.com/johncoene/ashake

a-frame rstats

Last synced: 25 days ago
JSON representation

📦 shake2show for aframer

Awesome Lists containing this project

README

          

# ashake

Shake2show component for [aframer](https://aframer.john-coene.com/)

## Installation

``` r
# install.packages("devtools")
devtools::install_github("JohnCoene/ashake")
```

## Example

This is a basic example which shows you how to solve a common problem:

``` r
library(aframer)
library(ashake)

browse_aframe(
a_scene(
a_dependency(),
ashake_dependency(cdn = TRUE),
a_entity(
shake2show = NA,
visible = "false",
a_box(
position = xyz_aframe(0, 1, 3),
color = "black"
)
),
a_entity(
camera = NA,
`look-controls` = NA
)
)
)
```