Nice!
It looks like you may need to slightly adjust to place it on your shoulder!
what do you mean it is on my shoulder. It probaly just looks a bit off because im using robloxian 2.0 package
How did you make the color palette exactly like studioโs
Just With only parts and wedges
Oh ok I thought maybe you used a decal or something
wiggly placement system
Cool idea on resizing the scope image. Never thought of that. You use your own spring system for that or do you use an open source one?
Parser/Lexer Framework is essentially finished! I created two Domain-specific languages for defining Lexing and parsing rules, and the result is extremely robust! Take a look at this.
local lexerRules =
[==[
PUBLIC: 'public';
VAR: 'var';
VAL: 'val';
EQUALS: '=';
COMMA: ',';
LT: '<';
GT: '>';
SLASH: '/';
WORD: [a-Z][a-Z_0-9]*;
NUMBER: [0-9]*;
STRING: '"' not'"'* '"';
]==]
local parserRules =
[==[
declaration: DECTYPE=(VAR | VAL) VARIABLENAMES = (WORD (COMMA WORD)*) VALUES = (EQUALS value (COMMA value)*)?;
value: WORD | NUMBER | STRING;
]==]
local lexer = antlr.generateLexer(lexerRules)
local parser = antlr.generateParser(lexer, parserRules)
local test = parser.parse([==[
var X, Y = 0, 1
var a,b = 2,3
]==], {rule = 'declaration'})
local declarations = test.byOrder
for i, declaration in pairs(declarations)do
local varWords = declaration.VARIABLENAMES.WORD
local values = declaration.VALUES.value
local word0, word1 = varWords[1].text, varWords[2].text
local value0, value1 = values[1].text, values[2].text
print(word0, value0, word1, value1)
end
Output:
X 0 Y 1
a 2 b 3
Whats next? Will post soon.
The idea is u can set up a lexer/parser for whatever you may need in minutes, rather than hours.
Fifth Column received a slight change only today, only with a subtle arpeggiator.
You would be a great voice actor, I would love to play this game by the way!
Just slowly, but surely recreating Beacon Academy from RWBY. Currently, the sunlight (and probably the DepthOfField) is kinda intense to me.
Other than that, have a picture of Team JNPR (which replicates a part of the Volume 1 Intro,) and WIP screenshots other than the JNPR photo.
Iโm working in a military game: