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
- Host: GitHub
- URL: https://github.com/johncoene/ashake
- Owner: JohnCoene
- License: other
- Created: 2018-08-24T11:16:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-08T17:57:52.000Z (over 7 years ago)
- Last Synced: 2025-03-21T20:16:17.505Z (about 1 year ago)
- Topics: a-frame, rstats
- Language: R
- Homepage: https://ashake.john-coene.com
- Size: 308 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
)
)
)
```