velocity.js support for set

added vx and vy as properties with default number types, so a type argument isn't required
This commit is contained in:
O-01-67 2022-09-14 12:47:36 -04:00 committed by GitHub
parent 01657f59dd
commit 345df9429b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ booleanSynonyms = ["boolean", "bool", "boo", "bo", "bl", "b"];
trueSynonyms = ["true", "t", "1", "yes"];
falseSynonyms = ["false", "f", "0", "no"];
defaultStringTypeValues = ["element","color"];
defaultNumberTypeValues = ["x","y","temp","start"];
defaultNumberTypeValues = ["x","y","temp","start","vx","vy"];
commandHelpObject = {
"set": "Sets properties for every pixel of a given type.\nUsage: set [property] [element] [value] <type>\nDon't include framing characters []<>.\nThe element can be \"all\" to set the property for every pixel.\nNote: Strings can't have spaces because spaces are the separator used in the parsing split().\nArguments in [brackets] are required and ones in <angle brackets> are optional.",
"test": "Test.",