-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The variable itself is some data container with a type. No full OO approach for performance reasons. In the near future, an abstract script class can be used providing some methods that can execute directly instead of loading a script from plain text.
- Loading branch information
1 parent
a481ae0
commit 507f700
Showing
7 changed files
with
157 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#begin | ||
a_true_bool bool true | ||
a_false_bool bool false | ||
an_integer int 5 | ||
a_float float 5.001000 | ||
a_float3 float3 1.010000 2.020000 3.030000 | ||
a_float4 float4 4.010000 5.020000 6.030000 7.040000 | ||
a_colour colour 8.010000 9.020000 10.030000 11.040000 | ||
a_string string "test" | ||
#end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
#begin | ||
|
||
a_true_bool bool true | ||
a_false_bool bool false | ||
|
||
an_integer int 5 | ||
a_float float 5.001 | ||
a_float3 float3 1.01 2.02 3.03 | ||
a_float4 float4 4.01 5.02 6.03 7.04 | ||
a_colour colour 8.01 9.02 10.03 11.04 | ||
a_string string "test" | ||
|
||
#end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.