You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-21Lines changed: 4 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,27 +50,10 @@ A few gotchas to look out for:
50
50
- Make sure to open the compiled story file as a binary file (see the above example, use `open(filename, 'rb')`) in order for it to be properly parsed by the compiled protobuf library.
51
51
- Unless you pass `autostart=False` to the runner when creating it, it will automatically start and run to the next choice point.
52
52
53
-
All Yarn Spinner opcodes are currently implemented. This may certainly change over time, if new opcodes are added to the language. The current status is:
|`JUMP_TO`| ✅ Implemented in `runner.__jump_to`|
58
-
|`JUMP`| ✅ Implemented in `runner.__jump`|
59
-
|`RUN_LINE`| ✅ Implemented in `runner.__run_line`|
60
-
|`RUN_COMMAND`| ✅ Implemented in `runner.__run_command`|
61
-
|`ADD_OPTION`| ✅ Implemented in `runner.__add_option`|
62
-
|`SHOW_OPTIONS`| ✅ Implemented in `runner.__show_options`|
63
-
|`PUSH_STRING`| ✅ Implemented in `runner.__push_string`|
64
-
|`PUSH_FLOAT`| ✅ Implemented in `runner.__push_float`|
65
-
|`PUSH_BOOL`| ✅ Implemented in `runner.__push_bool`|
66
-
|`PUSH_NULL`| ✅ Implemented in `runner.__push_null`|
67
-
|`JUMP_IF_FALSE`| ✅ Implemented in `runner.__jump_if_false`|
68
-
|`POP`| ✅ Implemented in `runner.__pop`|
69
-
|`CALL_FUNC`| ✅ Implemented in `runner.__call_func`|
70
-
|`PUSH_VARIABLE`| ✅ Implemented in `runner.__push_variable`|
71
-
|`STORE_VARIABLE`| ✅ Implemented in `runner.__store_variable`|
72
-
|`STOP`| ✅ Implemented in `runner.__stop`|
73
-
|`RUN_NODE`| ✅ Implemented in `runner.__run_node`|
53
+
As of version 2.0, all Yarn Spinner opcodes are currently implemented, as well as Yarn's internal standard library of functions and operators. This may certainly change over time, if new opcodes, functions, or operators are added to the language. The current missing features are:
0 commit comments