Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed visible=false to visible=true in Vine examples and added a li… #26

Open
wants to merge 1 commit into
base: release
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/API/ScriptingLanguages.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Enklu Cloud's scripting interface offers 2 types of scripts: Behavior scripts an

## Vine Scripts

Vine scripts are written using VineML. VineML is a markup language which strongly correlates to HTML. However unlike HTML, VineML has several built-in features specifically aimed at creating UI elements for AR. In Enklu Cloud, Vine scripts are used to describe element hierarchies, assign schema data, and display information.
Vine scripts are written using [VineML](Vines.md). VineML is a markup language which strongly correlates to HTML. However unlike HTML, VineML has several built-in features specifically aimed at creating UI elements for AR. In Enklu Cloud, Vine scripts are used to describe element hierarchies, assign schema data, and display information.

VineML files are called *documents*. These documents are made up of a hierarchy of nested *tags* which start from a single root element. Each tag can have zero or more attributes. Let's look at an example Vine script:

Expand Down Expand Up @@ -56,7 +56,7 @@ While tags define the object structure, attributes define the object properties.
```jsx
<Caption
label = 'Hello'
visible = false
visible = true
font.size = 100
width = 1000.5
position = (0,0,10)
Expand Down
2 changes: 1 addition & 1 deletion docs/API/Vines.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ In addition, tags may not have raw text inside of them. All values are passed to
```jsx
<Caption
label='Hello'
visible=false
visible=true
font.size=100
width=1000.5
position=(0, 0, 10)
Expand Down