Skip to content
This repository was archived by the owner on Jul 17, 2022. It is now read-only.

Commit f34bbd9

Browse files
Limitations Readme
1 parent 59366a1 commit f34bbd9

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,21 @@ func update => {
113113
}
114114
```
115115

116+
# Known Limitations
117+
## Float Support
118+
At the moment firework does not have float support, however that is to change.
119+
## String Support
120+
Due to the limitations of addons string might be difficult and computationally expensive so experiments will be done with this but it is not garunteed to be added.
121+
## Delayed IFs
122+
Due to the limitations of addons if statements will use the state from the previous tick. In order to get around this you need to delay the if by 1:
123+
```
124+
delay(1) => {
125+
if($foo) => {
126+
$bar = true
127+
}
128+
}
129+
```
130+
116131
# Roadmap
117132
```
118133
✔️ = Complete

0 commit comments

Comments
 (0)