What are you working on currently? (2020)

Nice!
It looks like you may need to slightly adjust to place it on your shoulder!

1 Like

what do you mean it is on my shoulder. It probaly just looks a bit off because im using robloxian 2.0 package

1 Like

How did you make the color palette exactly like studioโ€™s

1 Like


42 Likes

Just With only parts and wedges

1 Like

Oh ok :+1: I thought maybe you used a decal or something

1 Like

wiggly placement system

19 Likes

27 Likes

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?

1 Like

Map 1 to my game โ€œYou Garageโ€ (In Construction)


23 Likes

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? :wink: Will post soon.

The idea is u can set up a lexer/parser for whatever you may need in minutes, rather than hours.

11 Likes

Fifth Column received a slight change only today, only with a subtle arpeggiator.

11 Likes

You would be a great voice actor, I would love to play this game by the way!

1 Like

I totally just finished a Bob Ross painting. Woah

34 Likes

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.



12 Likes

DC-15A


DH-17

another naboo house

15 Likes

17 Likes

25 Likes

Iโ€™m working in a military game:

2 Likes

Updated last years Roliday cafรฉ with future lighting. Looks like a blender scene for sure.

33 Likes