Skip to content

Commit d8e8ca5

Browse files
committed
Update README.md
1 parent f910a83 commit d8e8ca5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,25 @@ Unreal.js is a plug-in which brings V8-powered Javascript into UnrealEngine4.
88
- Full access to the whole UnrealEngine API
99
- Free to subclass existing classes including blueprint
1010
- Web-dev like UMG (Jade, pseudo-css, pseudo-angular.js)
11+
```jade
12+
div
13+
span.full
14+
Button.full
15+
text {{text}}
16+
div.full
17+
Button.full(fn.on-clicked="inc()")
18+
text {{count}}
19+
Button.full(fn.on-clicked="add()")
20+
text Click button above!
21+
span
22+
text.yellow >
23+
EditableText(Binding.Text='text',fn.on-text-changed='text = ^arguments[0]',HintText="Your secret goes here")
24+
25+
list.full(repeat='item in items',on-click="discard(item)")
26+
HorizontalBox.small
27+
text.full {{item.key}}
28+
text.full {{item.value}}
29+
```
1130
- Live reload
1231
- Communicate with outer world: REST, process(pipe), arraybuffer, ...
1332
- Bridge API for editor extension

0 commit comments

Comments
 (0)