#lounge

1 messages Ā· Page 428 of 1

summer cedar
#

Ok. It is time.
Chants of devotion shall commence.
Installation shall proceed forthwith.

tulip orbit
#

šŸ¤” ```UENUM(BlueprintType)
enum class EEntranceLoc : uint8
{
Default, //Default entrance is somewhere on left side of map, exit would be furthest point
North, //+X
South,//-X
East,//+Y
West,//-Y
};

UENUM(BlueprintType)
enum class EEntranceSpawn : uint8
{
Default, //Exit will be furthest point on map
North,
South,
East,
West,
};```

tulip orbit
#

I dont know! 😦

cursive crypt
#

/shrug who knows

pearl elk
#

maybe north could be 0 or 1 šŸ˜›

cursive crypt
#

What if it is north already?

tulip orbit
#

did a "Find all References" in current project, and it seems the second one isnt used, so I will delete and see if it compiles later....

pearl elk
#

what if north is Z+

tulip orbit
#

its used to decide where the entrance/exit is spawned on the map, and the map is 2d only so.. +X

cursive crypt
#

So, no depth? Single floor

tulip orbit
#

yeah 😦

#

tho I want to add multiple floors, I just have no idea how

fleet tangle
#

"Direction" or whatever

#

If you add more floors, make it a struct. Enum + floor #.

pearl elk
#

ewwwnums

tulip orbit
#

Yeah I have a direction enum as well, tho not sure its in use anymore. But with deciding direction thing, I wanted the default for it being semi random I think. I forget how that works (other than the comment)

pearl elk
#

if you go far enough left you end up right šŸ˜›

fleet tangle
#

That bears no relation to the enum, though.

cursive crypt
fleet tangle
tulip orbit
fleet tangle
#

But both enums have "Default".

tulip orbit
#

Yeah the second one is deleted now, I dont know why I had two

pearl elk
#

defaultest default of the defaults

#

but it'll still fault... question is whos fault is it

fleet tangle
#

Then adding conversions functions. 😦

tulip orbit
#

Yeah. I've got two structs here that are quite similar, but different enough in structure and purpose that I think I have to keep them seperate

pearl elk
#

wheres the extensibility

fleet tangle
#

I think I've got like 3 enums just for colour channels. One has None, one has RGB and RGBA, etc.

tulip orbit
#

they dont have those built in?

fleet tangle
#

Not that use the correct meta information.

tulip orbit
#

ah

fleet tangle
#

I don't believe there's a generic Red, Green, Blue, Alpha enum in the engine publically anywhere.

#

And even if there were, it's not set up correctly šŸ˜‚

pearl elk
#

but how do I pick yellow?

fleet tangle
#

In my case you don't.

pearl elk
#

crys in CMYK

#

I have an enum for all my 50 shades of grey

errant raven
#

Why

#

Why 50. And why grey

#

Freak

proud jay
#

it's a book

errant raven
#

A rather peculiar book

pearl elk
#

I have an unhealthy obsession with gun metals

fleet tangle
errant raven
#

Arent they all

fleet tangle
#

50SoG is just popular because it's smut.

pearl elk
#

Tolkien ftw

errant raven
#

I mean the ones like fifty shades of unrealistic adult stuff

fleet tangle
#

Steven Erikson ftw!

pearl elk
#

Asimov ftw

fleet tangle
#

50 shades isn't unrealistic, though šŸ˜› It's just bad.

tulip orbit
fleet tangle
median wraith
#

@fleet tangle turns out if I set the capsule size in the BP after the play it set the correct size, but gives a shit if I do in C++

fleet tangle
#

Ah ha.

median wraith
#

idk whats going on really

#

here list correctly, but the render isn't

tulip orbit
median wraith
#

will ask on the C++ channel must be something with the physics

tulip orbit
#

I'm debating a big change on my map gen. In my map theme data asset, I have seperate arrays for each type of wall tile to spawn (straight walls, corners, ceiling, etc) But it gets kinda messy to read thru and see what pieces there are when I get lots of pieces. So I was thinking of changing it to a data table, one for walls ceilings and floors each. Then in the DT I can sort by wall piece type. But currently lots of code uses those seperate arrays, and I'd probably have to change it to store/use row names instead....

#

are there other options for having a big list of items?

#

or a better way to view the data in a data asset?

pearl elk
#

Well there is always the option of duplicating data for easier manipulation by a human but on the back end you do the robot sauce

#

efficiency isnt so important as user experience for the front end so perhaps something to consider

tulip orbit
#

I think the data table would be much easier to work with. But it'll be a lot of rewrite on my end

#

but... the rewrite might hopefully end up making me write things a little better.

pearl elk
#

well if you can automate it so the datatable auto propagates to your arrays then maybe you can just hook it

tulip orbit
#

I could do that.... but the other idea of it, is if I do add 3d environment support, I'm going to add more piece types, which would easier by having all wall pieces and such in one spot

pearl elk
#

PostEditChangeProperty is the event you want when an object is edited

tulip orbit
#

I could potentially pull the whole data table and put it in an array for working with

pearl elk
#

so you only need to update bits and pieces not refresh the entire array

tulip orbit
#

huh? PostEditChange -> store it in an array for handling in the generation process.... but where would I store the array?

#

Why not instead of storing the data perpetually in two spots, When the map gen runs, it stores a temp array for the map gen to use, and then when map gen is complete, it clears the temp array?

pearl elk
#

I just thought to reduce errors you could duplicate the data then rewrite and remove the old code path once youre satisfied the new one is entirely functional

#

this way the old code path stays intact

tulip orbit
#

I think, the way my code is written, it'd be harder to add both. Plus I'd just get horribly confused trying to parse it in my head

pearl elk
#

well you cant compare performance unless they function side by side

#

could be your current system is actually more performant

celest musk
#

i would, if possible, start with a getter which merges the old data to the new format

#

then implement the getter everywhere

#

then you can start/decide to migrate the data

tulip orbit
#

well the data I've got now is all test stuff and pretty basic so its not worth trying to implement that (especially since I dont know how...)

#

as for the actual map gen functions, I've got a lot messy code in there where I have to get the piece type, then get the array, and sort and track between the different arrays. if all my walls are in one big array, it'll be much easier to handle I think

pearl elk
#

If Im honest Im not the biggest fan of many of the built in data stores

#

I pull my data from json files on disk and autogenerate DataAssets in the editor

#

much nicer diffing on text

tulip orbit
#

neither DT or DAs are perfect, I agree.

pearl elk
#

sounds like you need to rewrite the underpinnings before moving to a different data source

tulip orbit
#

its going to be a bigger job than I probably realize...

pearl elk
#

as long as you got a good plan of attack it's doable

tulip orbit
#

I also dont have any other ideas of things to do/try. I got my only other good idea working yesterday

pearl elk
#

try all the things

tulip orbit
#

alrighty, compiling what I've done so far. And to test how the data table actually looks in editor...

pearl elk
#

it'll look like excel and slate had an ugly baby

woven mason
#

-# why can't i just finish a project

#

it's like i reach 80% - 90% of a project and then motivation drops to 0

median wraith
#

me too except at this point nothing works as expected for whatever reason

tulip orbit
#

I'm lucky to reach 25%

woven mason
#

-# y we suffer

pearl elk
fleet tangle
#

It's Uncompiled II.

median wraith
#

So the issue is when the pawn is spawned, makes no sense

cursive crypt
#

Occasionally, when I spawn my "Play from Here" actor it goes through the terrain.

#

I also use some auto ground aligning fences which sometime just do stupid shit because the landscape trace does not report anything.

median wraith
#

seems like got random fixed

#

idk

cursive crypt
#

Nothing is random.

median wraith
#

idk after a lot of mini changes is working so

#

had other issue is the parent contruction wasn't connected

median wraith
#

or maybe the initial setup was blocked due the use of all those prior to the spawn

#

no clue

#

bet it was the duck

#

look at those eyes

cursive crypt
#

damn, this would like so much better with static lighting

woven mason
median wraith
woven mason
#

||i can't help but frame stuff now||

tulip orbit
#

who puts a big vase like that right on the edge of the table?

woven mason
#

-# barbaric

median wraith
#

can push it more

woven mason
#

-# N o o o o

tulip orbit
woven mason
#

I got Callisto Protocol for Free just in time i think

#

But man i thought it was like a Thriller game not Horror 😦

#

i will install it anyway

#

Anyone play it ?

#

-# 100 GB? w a t

cursive crypt
#

I have played Dead Space and this one is very close to it.

#

It has suspense and some thriller. But is mostly survival horror in space.

median wraith
#

have coop ?

cursive crypt
#

Coop was nice in the 3rd part.

#

Man, I miss simple menus in games. It just launches, no bullshit.

median wraith
#

lol

woven mason
#

Lunar Commander II was def chillin undera comfy 1.44MB

median wraith
#

oh lord

celest musk
#

which one is that?

calm fable
#

Undercity + Wonderland Bundle. Didn't look into it myself because the previews already look like ass, so I'll just take their word for it

median wraith
#

Epic gave another pack from this person time ago

#

already looked kinda like this

celest musk
#

he probably gave it away for $5

median wraith
#

usually Epic pays them 4 nums

#

or some one said that time ago

celest musk
#

problem is, this seems to be optin from what i know

#

not sure if most sellers are even aware of that option

#

or they pay in vbucks šŸ˜›

median wraith
#

idk but I have seen they giving the packs from the same 6 devs for long

mild gust
#

Ozempic

brittle holly
#

I def want to click that now

pale scarab
#

Annoying! who are you to determine what's the best game engine? Hate this type of videos

brittle holly
#

What’s the red UE logo for?

pale scarab
edgy elm
#

does not say what you think he says

pale scarab
edgy elm
#

ye ye

#

gives an overview of each engine

pale scarab
brittle holly
open fog
#

i like he's hat

median wraith
soft night
#

Let's see G4!
That's a miss...

Oh wait, that's the wrong game!

Another REDstreams episode is in the books!

From game mechanics to the creative process, we're taking you inside Night City's board game experience. Together with our guests, Łukasz Woźniak, the game's author from Go on Board and Patrick Mills, our Franchise Content Strategy Lead,...

ā–¶ Play video
median wraith
#

your update

#

and yeah that's dynamic

cursive crypt
#

haha, okay, I mean it much better, but you shouldn't have just for my amusement

median wraith
#

well doing the updates so

#

isn't for you but a general update

median wraith
cursive crypt
#

I think, I have seen these blueprints at right somewhere

cursive crypt
median wraith
median wraith
median wraith
#

haha

soft night
#

the imatra day pictures and music that played during was osmos cosmos - White water symphony

#

last year it was the debut of the show https://www.youtube.com/watch?v=bWIOC9ii3E0

Osmo's Cosmos: Whitewater Symphony
Written by P. Kiisseli, V. Soininen & R. Johnson

Osmo's Cosmos:
Tipe Johnson, lead vocals
Aleksi Koukonen, lead guitars
Henkka Putto, bass
Henkka Siira, drums
Ile Koukonen, vocals
Ville Soininen, baho quinto, keyboards
Pete Kiisseli, guitars, programmings

Choirs: Imatran Immet & Vuoksen Mieslaulajat - directo...

ā–¶ Play video
#

this year the leds was changed to water foundations what showed water dancing on rythm of music too

median wraith
#

how the heck the people does the UVs for nanite meshes ?

#

looks like a nightmare

unborn lotus
#

You uv the medium poly then subdivide

#

Blender can handle uvs for large meshes pretty well too

median wraith
#

mmm

summer cedar
#

ZBrush has a similar system too.

#

You sculpt a high poly mesh and then decimate it - if I remember the name correctly.

#

The decimated poly is much lower than the million poly version. Apply your maps and seamlessly transition back to the high poly version. Adjust as required.

#

It can still be a PITA though. šŸ˜„

open fog
cursive crypt
median wraith
#

Nope

#

But doing some models

cursive crypt
#

Yeah, but why nightmare? Gonna be nightmare if you have to do manual tuning?
Most UV apps should allow you to just do cuts from point A to point B say.

unborn lotus
#

All do but it turns out its too laggy to do anything useful šŸ˜… except blender, it was always pretty fast

#

Maya is probably the slowest

#

2 minutes to select an edge

cursive crypt
#

lol

median wraith
cursive crypt
#

You need just point A to B in straightest possible line.
Frankly, I haven't UVed med-high polys, but it shouldn't be so hard šŸ¤”

#

Just to make it clear point A to B and then you repeat, this is manual

rare sparrow
#

This gave me a laugh

woven mason
#

-# but what if i wanna work on it on my laptop without internet

summer cedar
cursive crypt
torn totem
#

math

woven mason
#

wat

#

cant read that

torn totem
#

it says a word

#

that isn't allowed

woven mason
#

p r e p o s t e r o u s

torn totem
#

understand

#

I am bored

woven mason
#

||b l a s p h e m y ||

torn totem
#

real

woven mason
#

every day i think

#

real quotes

#

šŸ¤˜šŸ½

#

free knowledge

fresh bison
#

Hello there.
need help with searching the site. site was about topography taking from google/bing maps and its looks like you are select the area and choose sort of types and at the end you get 3d mesh of area with elevations and textures taking from google/bings and you can export it with image of texture and 3d file (dont remember format the files, but its easy to convert to OBJ or FBX)

#

its not terrain.party, 3d-mapper, etc.

still crow
#

Does anyone who has already published a game on the Epic Games Store know of a cheap web domain that works with the Epic Account Services verification/review?

still crow
#

I don't know, I tried Google Sites and Epic doesn't allow it.

woven mason
#

-# blessings upon you all

still crow
woven mason
fresh bison
woven mason
#

oh wait i see it too

#

what does usp=sharing do

#

damn remember .tk domains for that kinda stuff?

#

.tk was the bomb

chrome gull
#

good placement for the gun? (advice for ADS in the second image would also be appreciated)

woven mason
woven mason
#

so regardles if i use the dot or the Iron sights they line up, but thats my pref

chrome gull
chrome gull
#

I have no clue how to fix that

#

what do think of the hipfire placement?

woven mason
#

bit far out

#

wrist is funky also, but i think that is not the question you ask

chrome gull
chrome gull
#

correct

woven mason
#

yeah it kinda feels like im holding a Baguette under my arm AND shooting the AK šŸ˜›

chrome gull
#

this is gonna take so much longer than I initially remembered it to be

woven mason
#

it's jsut my opinion, but i played like Counter-strike 1.4 with no HUD, someone else might differ and have a solid reason

chrome gull
#

I have 38 weapons and this is weapon 1

chrome gull
#

and see what suits best for hip

woven mason
mental veldt
#

Ask on SBs discord channel - he'll help you get that fixed up

chrome gull
chrome gull
woven mason
#

I see, well I think personally that Aiming Down Sights should remove a Dot anyway since im, well, aiming down the Sights, and not hip firing

#

but yh depens on your game style etc. i guess

chrome gull
#

hmm, I'll see if it's better that way

woven mason
#

Are you making a realistic game?

#

or what kinda vibe is it, if im free to ask

#

which i am bc this is the internet

chrome gull
#

if you're talking from a gameplay perspective, it'll lean more towards arcadey

woven mason
#

ooh, then chuck that crosshair in there all the time hehe

chrome gull
#

that was my intention

#

thanks for your help!

woven mason
#

i marked the time

chrome gull
#

gotcha!

woven mason
#

šŸ™Š

#

yuh

#

-# bless you my brother

#

oh yeah that's old skool, i like it

#

I used to play CS 1.4 and then there was an option to switch the model to Left Handed.

I am/was Right Handed, but it would make so much difference in games for me, i would be so much more accurate and kiddo me would have no idea why šŸ˜‚

#

šŸ¤” i still dont

queen isle
#

Why no megascans for dragons? Are they stupid?

celest musk
#

may be some guy from PETA

brittle holly
#

Don’t need a dragon megascan because there’s a dragon control rig.

woven mason
tulip orbit
#

theres no megascans of dragons cause they're too hard to keep still

broken sigil
#

brb, gonna go scan this dragon I keep locked away in my garden

median wraith
#

Contacted Epic via the form they provide on the Unreal Engine for the licenses

#

But they told me they don't cover Unreal Engine there

queen isle
#

Cope is high in demand this season

prisma tapir
#

sony can suck it lol

#

emulation is getting closer

#

šŸ‘ļø

summer cedar
#

Star Wars: Outlaws meme of a lifetime - I stole a grenade from a stormtrooper. 🤣

spring sandal
#

Hello everyone

cursive crypt
#

Who dat?

mild gust
#

Is it that one guy

broken sigil
#

Pretty interesting, worth watching
https://youtu.be/_TYuTid9a6k

Go toĀ https://hensonshaving.com/shavingwithjoe and enter "SHAVINGWITHJOE" at checkout to get 100 free blades with your purchase.Ā 
Starting in the 1940s, a new surgery was being explored to help people with severe epilepsy which involved severing communication between the two hemispheres of the brain. It worked, but caused some very strange side ...

ā–¶ Play video
rare mauve
#

good old back in the day... "eh let's just cut this and see what happens"

cursive crypt
#

No free will, no random chance. Everything is predetermined. Buy crypto.

mental veldt
#

reminds me of Paula, Agnus and Denise in the Amiga - but no free will? or is that just justification????

broken sigil
#

To me the most interesting part is the "interpreter module" in the brain (how they called it), when a hemisphere observes something the other did without having access to information from the other one it makes stuff up to justify the observation

It kinda sounds like an llm lol

#

The left-brain interpreter is a neuropsychological concept developed by the psychologist Michael S. Gazzaniga and the neuroscientist Joseph E. LeDoux. It refers to the construction of explanations by the left brain hemisphere in order to make sense of the world by reconciling new information with what was known before. The left-brain interpreter...

mental veldt
#

yeah it does eh! and the visual cortex kind of works in the same way, filling in gaps in our vision kind of like an llm too

broken sigil
#

Yep, it's very fascinating

#

In fact we all have a blindspot in our field of vision where the optic nerve leaves the eye but the brain fills in the missing information to cover that area

#

A blind spot, scotoma, is an obscuration of the visual field. A particular blind spot known as the physiological blind spot, "blind point", or punctum caecum in medical literature, is the place in the visual field that corresponds to the lack of light-detecting photoreceptor cells on the optic disc of the retina where the optic nerve passes thro...

mental veldt
#

yeah - and hallucinations are when there isn't enough data to build a full picture.
Combine that with vibrating nano tubules...
https://www.sciencedaily.com/releases/2014/01/140116085105.htm

broken sigil
#

Interesting, first time hearing about that one

mental veldt
#

It's been hypothesized that they are a form of communication - making us kind of like wireless game-pads for a higher consciousness šŸ˜„

median wraith
cursive crypt
#

ngl, 90 is kinda small

median wraith
#

technically the normal is 60Āŗ

#

to 70Āŗ

cursive crypt
#

That 120+

median wraith
#

from center*

cursive crypt
#

/smirk

median wraith
fleet tangle
#

šŸ„… āž”ļø

median wraith
#

but yeah I pass on the sides from full view to nothing

median wraith
#

technically there is an area that's recreated by the brain and isn't even real color

cursive crypt
#

AI baby

median wraith
#

XD

#

there is lumen only SS there

#

every game I see with multiplayer comes with vivox this days

#

seems to be owned by Unity, why Epic didn't got it

cursive crypt
#

vivox?

median wraith
#

seems like a tech to make realtime voice chats

#

in-game

#

but you have to pay a dedicated server for it to Unity

#

I don't see the point tbh, back in the days we had it on the game server

#

well maybe if you don't put everything in the same server don't affect the gameplay so much

#

but isn't like it did

cursive crypt
#

Ah, I recall now a vague memory about this.
Maybe it is an way to outsource that feature.

#

Anyway, I will let multiplayer devs to worry about it šŸ™‚

median wraith
#

Damm I loved old multiplayer times

cursive crypt
#

I like couch games.

#

You can laugh/yell together.

proud jay
#

like tickling?

#

what games can you play with a couch?

median wraith
proud jay
#

New cooking pot gang

#

gonna bake some bread in it

cursive crypt
#

Sure it is heavy

proud jay
#

yup

#

6kg

#

can double as gym equipment

cursive crypt
#

These are nice for potatoes and/or meat meals too.

#

Put in the oven and forget.

proud jay
#

yeah it came with a recipe book as you can see

#

everything in it looks delicious

#

definitely gonna try some things

median olive
proud jay
#

I'm not about to download a random file from a dude that joined the server today lol

median wraith
woven mason
#

wow colored hyperlinks

#

fancy

proud jay
#

you can do it in an airfryer

#

you can even do it in a frying pan if you want

#

but here you put the bread in the (preheated) cast iron pot and put that in the oven

#

it makes the baking more consistent and traps in the released water for steam

#

giving it a way crisper crust

#

and more even baking

cursive crypt
#

Bread-o-pedia ā¬†ļø

proud jay
queen isle
proud jay
#

they're still making those?

#

apparently it made big profits lol

#

who's watching these

median wraith
#

Well is the 3Āŗ one, maybe the kids

#

why the heck Spiderman have a huge fake eye inside

#

that's scary

proud jay
#

that one poly in front of his eyes where the web comes together is weird

median wraith
#

šŸ¤”

proud jay
#

why was the message removed just as I came here

summer cedar
#

Praise be the Omnissiah!

median wraith
#

not fan of those monitors for some reason

still crow
#

I'm trying to get my web domain verify with Epic Game Store but when I like my Google Site to my wed domain my DNS is no longer valid

#

Somebody know why?

unborn lotus
summer cedar
#

Try and stop me! ✊

woven mason
#

-# not to bring the room down, but i just found out Chandler from Friends died a year ago and i never knew

cursive crypt
#

Only that grey/small font is what brings down the room.

#

Also dude was on opiates

woven mason
#

oh srry, i thought it would help with being percieved as not so important

#

like a brain fart

cursive crypt
#

I think this would have been valid if it was a common style. It is not.

woven mason
#

I see.

cursive crypt
#

Talk, loud and proudly. We are dumb here anyway.

woven mason
#

Yes. I will.

cursive crypt
#

Bless you, child

cursive crypt
woven mason
#

delivering non-loopable Gifs should be an offence

#

*releasing

#

or is it uploading

#

contributing

woven mason
#

Ah well, just another celeb i dont even say hi to once gone , haha

unborn lotus
still crow
#

Has anyone ever published a game on the Epic Game Store?

#

or it's impossible?

summer cedar
#

It's my new monitor and CPU. šŸ˜„

#

Should've just said it's my new computer. Whatever.

proud jay
#

so what thing is the gpu?

#

you just use half a keyboard?

#

is this for when you miss your mom and must start whipping yourself?

summer cedar
# proud jay nice wide screen

This torrent of questions is blasphemous.
I'll answer from the most important to the least.
The belt is for your dad to whip you when your bread goes bad.
I use one and a half keyboards, the other hidden in a secret compartment away from your lecherous eyes.
The GPU is a 4060Ti 16GB Ventus OC from MSI.

proud jay
#

oh

#

I thought you got an external one

summer cedar
#

It is supposedly 'overclocked from the factory'.

#

Yes, I have the eGPU, but my laptop doesn't have TB4, only TB3 and so, doesn't completely recognise the device.

proud jay
#

F

summer cedar
#

So, I bought an entirely new computer. šŸ˜„

proud jay
#

makes sense

summer cedar
#

I am a happy guy, but I am waiting for a few games to finish downloading, so I can restart the computer and let Windows acknowledge all the driver updates. šŸ˜„

#

I also learnt that NetTime is a nice app to auto fix Window's time sync, when it decides to stop working.

proud jay
#

there's an audio sync issue?

summer cedar
#

Time sync, like date and time.

proud jay
#

oh

#

read that wrong

summer cedar
#

Apparently, BSNL - a popular ISP in India - decided to block the NTP port that Windows time service utilises to update the time automatically.

#

Because, according to them, that same port can be used to hack your system easily.

#

SO, NetTime lets you execute an automatic time update WITHOUT screaming at the ISP.

#

Disclaimer: You CAN still scream at the ISP.

#

Dieter, what do you think of HDR in monitors?

proud jay
#

I only have it on my tv

#

when using my ps5

#

but it's a lot nices to watch movies with HDR than without it

summer cedar
#

I just enabled it on my monitor. I am not sure how I feel about it.

#

Wow. Stupid monitor defaults to 60Hz and you have to enable the 144Hz yourself.

#

✊

celest musk
#

random question...

#

NPC follows you, and doesn't stop behind you, but goes to your left or right

#

which direction would you look first by intuition

celest musk
#

@unreal ether do you have a screen on the right side of your desk?

unreal ether
#

Yes. Why?

celest musk
#

also one on the left side?

unreal ether
#

Yes

celest musk
#

which is used more?

#

i was just curious if this may affect the behavior šŸ˜„

unreal ether
#

Both are used pretty equally, it depends which hurts my neck more :P

celest musk
#

as i would have tended to left, and i got a screen on the left

unreal ether
#

I tend to prefer right for my game and for checking, because my dominant side is right

#

are you left handed by chance?

celest musk
#

yea i used to swap every now and then, it really helps to get rid of a stiff neck xD

#

no, i'm right handed

cursive crypt
#

nah, left - why? Because it is easier to move the mouse to left with your right hand, keke

brittle holly
#

I mean if you have 3 center one should be for gaming imo

fleet tangle
#

And obviously the monitor in the middle the most.

mental veldt
#

wouldn't that depend on which side the noise is coming from?

celest musk
#

🤷 assume a situation without sound

#

e.g. a cat following you

fleet tangle
#

I'd always look right, because I'm temporarily blind in my left eye šŸ˜‚

mental veldt
#

right handed, but would look to the left

celest musk
#

wasn't there a unreal plugin to track player behavior? šŸ˜„

#

i'll make this my Phd work... "Left or Right"

#

unintentional attention grabbing title

summer cedar
#

I am a very happy egg, atm. šŸ˜„

celest musk
#

i want colored return nodes in blueprint

#

e.g. green for a succeed return, and red for a fail (or maybe just an option to tint any node)

fathom wadi
summer cedar
#

Thankfully, someone made a nice app that solves the problem quick-quick. šŸ™‚

fathom wadi
#

in reality, any port can be used for an exploit if it's open and unprotected by intrusion detection systems.

summer cedar
#

Now, it's a race to see which games app makes my Nvme drive run out of space first.

fathom wadi
#

I beat their system by getting gigabit internet. Now I can uninstall games between play sessions and it only takes about 30 minutes to get a 100gb download

summer cedar
#

Hehe.

#

I am running out fast though.

#

Oh well, no problem; I can always be prudent and finish some of the games, uninstall them, and replace them with others.

#

OR I can just buy another MSI nvme drive. šŸ˜„

proud jay
#

just buy another pc again

summer cedar
#

This is also an option.

fathom wadi
#
Epic Developer Community Forums

The 5.4.4 Hotfix is now available with a few key fixes and a key update for Android developers. To publish new apps or updates to the Google Play Store after August 31, 2024, you must update to 5.4.4 which includes updates for Android 14 compatibility with TargetSDK 34. Alternatively, you can pull the necessary updates from GitHub. Apps buil...

#

added the update for Android to align with Google's ridiculous SDK requirements

#

strange one tho that it says "previous unreal builds" wont ship correctly. AFAIK if you have the SDK targeted in your project settings it will still work. I only have the latest SDK installed but I did not submit to the store yet, so I'm confused if I need to update or not. I'm definitely within regulation on the SDK side because before I start a project I do my homework and knew Google were forcing SDK restrictions this month.

#

that means if I updated now, uploaded my game to the store, then left it until the next SDK update, I would have to reinstall everything to do with the project, switch it to the updated Unreal Engine and re-build before uploading again. Seems wrong somehow

summer cedar
#

I have reluctantly given up installing a few games, because I think my drive will run out of space.

#

So, I must wait.... until I retrieve the SSD from my laptop and plug it in... OR splurge on another nvme drive.

#

šŸ’°

celest musk
#

i love reading stuff on my vertical screen

#

but...

#

FU

fathom wadi
#

I have been playing a different game every time I stop work for the day(s). So the past few days I got through some Yakuza 0, No Man's Sky, Jedi Survivor, FFXVI demo and Mafia Definitive Edition.
I don't want to get in a loop of a 40 hour game but it's about all I like these days. So I switch it up so I dont get owned.

fathom wadi
cursive crypt
#

man, when you have the time to play games

celest musk
#

and the scrollbar takes 1/5th of the screen

fluid bloom
fathom wadi
#

yep. I said it was horrid when I first saw it and had to upscale to my monitor, but it scales wrong so I get a slim-jim website I have to read a sentence over a paragraph.

fathom wadi
cursive crypt
#

jeez, I guess the family supports you in these marathons, lol

fathom wadi
#

I have a dream wife

summer cedar
#

@unborn lotus I think either I won the silicon lottery, or my CPU case's fans and the thermal phantom air cooler are monsters. šŸ˜„

proud jay
fathom wadi
#

No my real wife wasn't a gamer so I ...... corrected her sir.

queen isle
#

How can concord compete!

edgy elm
#

bruh

#

chat-gpt be hittin me with the mandela effect

#

Upon further asking it tells me the game does not exist

mental veldt
# celest musk which is used more?

Sorry to re-open this - but it could be interesting to see how many artists turn to the right, and how many programmers turn to the left?

edgy elm
#

I would turn to my left first

celest musk
#

it's already determined in code (right get's checked first)

#

even tho i tended to go with left

#

thought to make it random, but guess that would be even more confusing

mental veldt
#

nice, problem solved.

errant raven
#

@timber viper please sir I am starving for good anime

#

I ate a whole ghost pepper and survived, and didnt need to drink milk or anything

#

I am built strong

timber viper
#

Romantic Killer

#

If you watch any of them dont give me any spoilers

#

Especially from 86

fleet tangle
#

Frieren is definitely the best of the lot there.

#

That and 86 are both good with strong sad vibes.

queen isle
#

I saw 86. It's pretty good

errant raven
#

I already watched mushoku tensei

#

But I want gorey stuff

#

Like invincible or the boys (but unlike the boys I want good plot and less ignorant people)

#

I will never experience hellsing for the first time again, and its deeply upsetting

tulip orbit
#

you can if you drink enough for a while

fleet tangle
#

Berserk.

#

Good and gory.

timber viper
#

didnt watch but maybe goblin slayer

cursive crypt
#

Lewd

cursive crypt
edgy elm
#

anyone who has unreal up wanna copy some quick blueprint stuff and play how predictable you are? It's kinda fun

#

fun trying to get the percentage to get really low and see how low you can get

brittle holly
rare sparrow
cursive crypt
#

They are in my current ban list:

mild gust
cursive crypt
#

Man, I feel like an hardcore advertiser as of late, but since recently Herobrine added in his Orbital Marketplace the Ban Authors list. I started to use it regularly.

mild gust
#

Thanks I wanted something to filter all that crap lol

cursive crypt
#

It still misses some nice stuff like showing when is a Sale going on.
Or the tags per product, as an way to see for example the dreaded "CreatedWithAI"

mild gust
#

or the fun "NoAI"

#

When a product is already all ai

cursive crypt
#

Ye, most useless. Frankly, only the CreatedWithAI is useful.

mild gust
#

Just let us modify it with more ai šŸ˜‚

#

Can't get worse

cursive crypt
#

NoAI is for the AI, not for people. Its purpose is to say that this product shouldn't be used for teaching AI

#

Which makes sense if you consider it is already garbage.

mild gust
#

Yeah

surreal marten
#

can I transfer all the stuff from my inventory of Epic Store account be it games, plugins, environment and such to another account?

mild gust
#

Depends, I got it done once but it was only for a few things. Just give as much detail as possible.

#

They will ask for proof its yours

surreal marten
mild gust
#

Yeah best bet is email the support

surreal marten
#

I have stock piled it but its in my work account which is temporary

mild gust
#

I had a similar issue had like 40+ assets transfered

surreal marten
#

yea just wanted to know if its possible

mild gust
#

and 1 game

#

Was old account

surreal marten
#

I see Thanks for the info!

mild gust
#

Np gl!

fluid bloom
broken sigil
#
proud jay
#

idk but @timber viper showed up in my dreams in my grandparents house and we were talking about politics with my family and you were my token turkish person

#

just so you know

proud jay
#

thanks, I worked hard on it

brittle holly
#

Dieter has a soft spot for the Turks I guess

proud jay
#

it was quite a soft couch he was sitting on yeah

brittle holly
#

Is the couch some sort of Freudian slip ?

timber viper
#

lets hope not

proud jay
#

people have couches in living rooms no?

timber viper
#

I dont

#

I just moved out

proud jay
#

oh

#

congrats

timber viper
#

i only have 1gbit ethernet and a cool desk

#

and a bed

#

dont need anything else tbh

proud jay
#

no chair at desk?

#

how cool a desk are we talking about though

timber viper
#

i have something like this

proud jay
#

I think my chair broke yesterday

#

you have this lean back thing but normally you can lock it so it doesn't lean and stays up straight

#

but I think the lock thing is broken

#

big sad

broken sigil
#

Mind control

cursive crypt
#

Its ok, my board does not want to go over 100mbps anyway

regal pecan
cursive crypt
# proud jay I think my chair broke yesterday

I haven't found yet the perfect chair.
My previous one had nice straight position for the back.
The current one has nice, breathable fabric for the summer, but has no good position for the back and the lower back support.

proud jay
#

I would switch providers, but my work pays for the internet and they only allow 2 options that they pay for

proud jay
#

and the other one is even worse

broken sigil
proud jay
#

oh you don't have the 2.5gbit yet?

#

@broken sigil you have a garmin watch right? How is it charged? is it just usb-c or is it some BS proprietary connector

#

I'm looking for a watch for my wife that she can use for swimming

surreal marten
#

fitbit?

mental veldt
#

I don't think a watch would help her swim, she may need a flotation device

tulip orbit
#

or a brick. šŸ™‚

proud jay
#

but battery life is ass tbh

#

have to charge it every 2 days

surreal marten
#

oh yea that i agree....

proud jay
#

garmins can go like 11 days

surreal marten
surreal marten
proud jay
#

I also don't like that fitbit hides some features behind their subscription

#

looking at the Garmin vivoactive 5 rn

median wraith
#

morning

unborn lotus
#

My garmin watch has a proprietary cable

#

The app is fine though

median wraith
#

yeah they use their own satellite or whatever

#

or you mean the recharge one

#

technically the second one is illegal in here

cursive crypt
#

There are cables from their format to usb-c tho

#

even weird shit like this

proud jay
proud jay
cursive crypt
#

They are inclusive.

proud jay
#

I think I'm gonna get the vivoactive 5 for my wife, and if it's good, might get a second for myself lol

#

the fitbit battery life is driving me insane

cursive crypt
#

Is that samsung or something?

#

oh, no
Google

proud jay
#

google bought them yeah

#

you also have a garmin? which one?

cursive crypt
#

Mine is kinda old, 2018 iirc, fenix 5x

#

is huge

proud jay
#

oh yeah I saw those fenix ones

#

they look dope

#

looks wise

#

a bit expensive though

cursive crypt
#

Apart from the dubious heartbeat sensor I'm happy with it.

#

Definitely, lol

#

They have nice set of choices tho.
And I think, this fall they are going to update their line.
Which may, or may not, bring some discounts for older models.

broken sigil
broken sigil
proud jay
#

oh

#

I hate those

#

fitbit has that too

#

but it's finicky to get it propely aligned after using it for 2 years

#

even though it snaps in place

#

it's not always working

broken sigil
#

Haven't had connection issues or anything

proud jay
#

which one you have?

#

balance?

broken sigil
#

Amazfit TRex 2 iirc

#

A year later and it feels like the battery only improved lol

broken sigil
proud jay
broken sigil
#

I can highly recommend this watch

proud jay
#

so bulky though

timber viper
#

You will download bg3 in 10mins or less

#

Thats so fucking crazy

broken sigil
#

Tho I have an option to either get a static or dynamic IP, they are giving me the choice

#

But I think I'm gonna go with dynamic

#

I like being able to just restart my router to get a new ip

median wraith
broken sigil
proud jay
#

does it have a build in AI gf though?

soft night
turbid spindleBOT
#

:question: is deja blue man GF?
:8ball: Most likely.

celest musk
#

"most likely" is a weird way to say yes

unborn lotus
proud jay
#

how long does your battery last realistically speaking?

#

and do you have always on display enabled?

unborn lotus
proud jay
#

ah

#

cool

unborn lotus
#

Yes, it looks like a normal watch but all the features youd want

#

But no hrv, no nap detection šŸ˜”

summer cedar
#

@unborn lotus I remembered the two scenes you had asked me to test in UE, with my GTX 970M, a while ago.

#

So, I ran the Environment Effects whatever it is called-scene today. šŸ™‚

#

My new PC crushed it. šŸ™‚

#

I was happy with the temps, too. During the initial loading, the CPU spiked to 81 for two seconds and thereafter, it was all 70-ish. When I was running on the ground, in the scene, both the CPU and GPU were happy at 68C. šŸ˜„

#

Thanks for recommending Thermal Assassin to me. šŸ˜

unborn lotus
#

Ah thats good

#

But what gpu?

summer cedar
#

RTX 4060ti 16GB - OC from MSI.

summer cedar
#

@proud jay Good news. I had enough space in my Games partitions to install all but three of my games.

#

Now, the question is whether I should commit heresy and install those three in my Work partition.

#

šŸ™ˆ

proud jay
#

why do you need all the games installed at the same time

summer cedar
#

So I can jump between them like an eager beaver.

#

Also, it's only 70 games or so.

#

..... out of 600+.

proud jay
#

how tf are you playing 70 games simultaneously

#

let me know your thoughts on star wars outlaws if you end up playing it

summer cedar
#

I am waiting for it to be on EA Play Basic, or Game Pass.

#

or Ubi+... whatever.

pale scarab
#

But they all like the open world sand box

proud jay
#

I hate combat in most games

summer cedar
#

From what I saw on theRadBrad's channel, SW: Outlaws is basically SW: Assassin's Creed.

#

It's a stealth game essentially.

#

Everything else is fluff.

proud jay
#

but stealth games are cool

summer cedar
#

Yes. šŸ™‚ You also get a cute pet to sic on other people.

summer cedar
#

It is entirely possible that she'll find a lightsaber and magically learn force wank in the future, but I hope not.

woven mason
#

show us the creature šŸ¤–

summer cedar
#

Nary a Force or a Farce to be seen anywhere. Disclaimer: No info about mid-late game yet

summer cedar
summer cedar
#

'Tis a wily thief, a lock picker, and a mighty companion in a small package even.

woven mason
#

waaat, hehe looks nice

woven mason
#

where can i get one

woven mason
#

want one to run around in win 10

proud jay
#

yes

#

I ate an internet

summer cedar
#

@proud jay Tell me 'Padded Cell' doesn't refer to a nutter's prison.

#

Apparently they make sound settings for those now. šŸ˜„

#

Now, this is just concerning.....

summer cedar
#

Dang. Guess being psychotic gets you a gaming PC in the sanitorium.

woven mason
#

Basic Consumer Knowledge

#

what about the ears

#

are those ears?

summer cedar
#

I think those are its antennae, because ears were sold out when it was made.

woven mason
summer cedar
#

No. It can understand what its owner says and has animal-y conversations.

#

I think it just uses its antennae as ears or something.

woven mason
#

nice nice, thats good

summer cedar
#

It's possible @proud jay cut it off in a surge of anger, because the bread wasn't sufficient.

median wraith
#

damm idk if this is a good idea for the final game lol

proud jay
#

why is everything moving

median wraith
#

is simulating old consoles vertex error computational but

#

yeah... idk if this is a good idea lol

#

everything moves due the head that's moving all the time

proud jay
#

I don't think I would endure that the entire game

summer cedar
#

No, that shouldn't be in the game.

proud jay
#

maybe if you can turn it off

#

see: baba is you

#

it also has this shaking thing

summer cedar
#

Or at least, you need to focus - concentrate it more.

proud jay
#

but you can turn it off

#

and is 2d

summer cedar
#

For example, make Dieter's head wobble like crazy, but his balls remain stationary.

proud jay
#

you mean eyeballs right

summer cedar
#

Some things shake; some things stand strong.

#

sure.

#

and the other two as well. šŸ˜›

celest musk
#

like a fluffy axolotl

summer cedar
#

It's handy.

#

Fetches loot, steals from safes and chests for you.

proud jay
woven mason
summer cedar
#

So... uh... HOORAY!... for a missing ball.

#

Keepin' it classy, folks! šŸ––

woven mason
summer cedar
#

YAY! šŸ’Ŗ ALL the games are installed now.

#

I had to install only Mechwarriors 5 in the Apps partition, instead of Games.

#

Everything else managed to squeeze in somehow in the right places.

#

Next... MODS!

proud jay
#

you mean @ moderators?

woven mason
summer cedar
#

If they can download and install Vortex mods for me, while I work, sure. šŸ˜„

proud jay
#

don't pretend like you "work"

summer cedar
#

I object to such slander, Sir! Fie upon thee! I spent three minutes setting up this cool window layout for writing and research, plus entertainment.... er, education.

proud jay
#

bro, I got my tetanus vaccination renewed yesterday

#

idk what the doctor did but there's a huge bump on my arm lol

summer cedar
#

Does it need to be renewed?

#

It thought that was a once-in-a-lifetime kind of thing.

proud jay
#

nope

#

every 10 years

summer cedar
#

Dang. How much does it cost over there?

proud jay
#

approximately 0 euros

summer cedar
#

Noice!

proud jay
#

as in 0

summer cedar
#

It's the vaccines you get for -1 EUR that you have to look out for.

proud jay
#

all vaccines I got up to now were free

#

I only have the mandatory ones though

summer cedar
#

I can't wait for nano-tech vaccines.

#

Updating themselves over the air.

woven mason
#

Where do you live may i ask in the globe

proud jay
#

belgium

#

but that doesn't change the fact that it's recommended to renew every 10 years

woven mason
#

10yr vacine date yeah?

proud jay
#

what

woven mason
#

like in 10yrs it doesnt work anymore

proud jay
#

well it still works, but the protection diminishes over time

#

so it's recommended to get a booster shot after 10 years

woven mason
#

Ah okay

#

That good old Patch

#

i thought it was for life

summer cedar
#

I wish they could bottle all the vaccines in a pet bottle concoction and tell us to down the whole thing in one gulp. šŸ˜„

woven mason
#

I think it's mandatory for my coutnry or you can't come in and that's why it's only at birth and ofc if you have symptoms

proud jay
#

well we get a bunch of things as a baby

#

and then a few more over the course till you're like 12

#

but the tetanus thing is 10 years for forever

woven mason
proud jay
#

if you want max protection

summer cedar
#

One of my doctor students told me that pretty much any vaccine eventually 'wears off'.

woven mason
summer cedar
#

It's just that pre-Covid, no one really discussed it, outside of medical systems that had it mandated at set intervals.

#

They should also just make the vaccines into powders that you can snort.

woven mason
summer cedar
#

But some twat will open an umbrella to shield themselves and everyone around them will be blocked from the heavenly mana, too.

woven mason
#

damn

#

didnt thiink about that

summer cedar
#

Story time...

#

...in the middle of a fight.

summer cedar
#

Cool, you say, hmm? With the force, you mean? Hmm?

summer cedar
#

Chapter 8 finished.

#

Time to alt+tab to the editor's room and get it ironed out for publishing.

summer cedar
#

Okay. Chapter 8 published.

#

Time to spin up my first game on the new PC and see if I can hit 144 FPS.

#

Then, I'll break my head on Twitch.

river sable
#

heya does anyone here have some experience with OpenBCI by chance?

proud jay
#

no

#

if anyone would have experience, I would doubt they achieved it by chance

summer cedar
#

not even by fortune then?

river sable
#

a meme for your enjoyment @proud jay

#

also, this is hilarious

soft night
#

5 years remedy game control released

carmine wraith
median wraith
soft night
#

yeah 5 year old that game is now

celest musk
#

huh? it was free on EGS like 2-3 years ago?!

#

that was really really early

#

considering that it's an pretty good game (imho)

nova zealot
#

i love game dev but my biggest opp is that i am not creative, right now i have set up movement, now i'm just sitting here wondering what to do next

#

the only idea i have is to implement level transitions like in half life but that's ambitious

#

so i'm probably gonna be sitting on this project for a while

errant raven
#

@carmine wraith rate my build. Be honest

#

Not that one, this one.

carmine wraith
#

Yo if you want a comparison

#

Build an intell comparison pc

errant raven
#

Sigh

carmine wraith
#
  1. What is actual chip speed? 12 threads is not impressive
  2. 32 gb ram? sounds like a minimum, i wouldnt buy a new computer with just the minimum
  3. maybe this is normal and all motherboards are "intel" or "amd" but having the motherboard itself branded in that way hits me in my sus bone
  4. um that SSD managed to have a shitton of letters and numbers yet not say what the storage capacity is?
  5. i know nothing about modern video cards, cant comment there
errant raven
#

It's meant to be bad

#

Fx chip is like 20 years old or something

carmine wraith
#

what the fk i just spent

errant raven
#

Ddr3 type shit

carmine wraith
#

5+ minutes attempting to provide useful feedback

#

so, joke did not land T.T

#

i almost commented on the cpu fans that were predomenantly actually just lights

#

hehe

errant raven
#

The first one isnt bad, it's kinda decent

carmine wraith
#

then im like .. w/e im not looking up if its a valid fan for his cpu and shit

errant raven
#

But I wouldn't buy am4 as a new system

#

That aio is overkill for the FX chip

#

I think.

#

It is 8 cores, 3.6ghz. Would run decently hot, especially since it's old amd before ryzen

carmine wraith
#

i havent owned an amd for probably 20 years

errant raven
#

Why are you letting intel fuck your wallet

carmine wraith
#

and i havent shopped for my own video card in at least 12, since i inherited office handme downs (game dev job), for that time

#

so i dont know know shit about amd models, lines, nor video cards

errant raven
#

They're great, for a pure gaming build

#

That's what they are mainly targeted for

carmine wraith
#

well i assume the context here is, "game developer build"

#

its usually important to have a pc that is 1. representative of the most common brand 2. a step above gamer pc, because youll need it

errant raven
#

Nvidia and intel aim for productivity performance, while it more than excels at gaming

carmine wraith
errant raven
#

Maybe no more than a 5% increase in fps than ryzen and rx cards. Which isnt really much

carmine wraith
#

notice: by wide margin the average steam person playing the games you are developing, are running intel and nvidia

#

if you develop your whole game on amd and amd

#

well you didnt test what the majority of people actually will experience

errant raven
#

Wow the 1060 6GB finally got replaced as the most used card on steam

carmine wraith
#

dx12 gpus and win10 71% plus is sooo nice

errant raven
#

AMD cards primarily use dx12

#

That's why they suffer so much in fortnite, when it's set to performance mode.

carmine wraith
#

im sure nvidea do to

#

huh?

#

dx12 is the max

errant raven
#

Performance mode uses directx 11, amd cards hate 11

carmine wraith
#

oh

errant raven
#

Nvidia cards do both, I think? I'm not too sure on the specifics

carmine wraith
#

generally speaking, amd skimping on drivers

#

is exactly what you paid for

errant raven
#

AMD is pretty good tho

#

Most the bad rep they get is just tech illiterate people being idiots

carmine wraith
#

im 100% glad there is a competitor to nvidea

#

just saying, if your a developer shopping for a pc, just look at steam hardware survey (assuming pc game developer) and but whatever MOST people have

#

then, if you buy a second pc specifically just for hardware testing

#

buy whatever 2nd most common thing is

errant raven
#

I didnt know the hardware used to develop something mattered

carmine wraith
#

like you just said stuff about fortnight and amd video cards?

errant raven
#

Yeah it runs fine if you dont use performance mode

carmine wraith
#

what if you designed all your performance qualtiy settings in game based on your pc which was an amd

#

and went way out of your way

#

to avoid some feature that tanked performance

errant raven
#

Then itd run well for amd cards and intel cards

#

Nvidia cards to

carmine wraith
#

turns out, it was only amd cards, and only 33% of people have those

carmine wraith
errant raven
#

Makes me not want to be a game dev anymore

#

Shits got way too much to consider

carmine wraith
#

lawl

#

its just a pc, and if your priority is "maximum effort per buck, and bucks are limited"

#

decide based on that

errant raven
#

Not even counting the non compete bullshit, shit working hours, and constant time crunches

carmine wraith
#

im done working in the industry, as an employee, i think

errant raven
#

You dont even get an hourly wage, its salary based

#

So no pay for overtime

carmine wraith
#

either i make it as a solo dev, on my own projects, or i make it as a solo contractor

#

ie. i am under full control over the contract

errant raven
#

I'd rather fuck around with rasp pi or arduino

carmine wraith
#

but im a jaded veteran, as it were

#

i recently heard something about a union

#

i think it was just some specific company's employees that actually unionized? but hiiiighly doubt it was in the us

errant raven
#

We dont do unions here

carmine wraith
#

there was a youtube video discussing a drop in quality of video games, as well as a swell in layoffs

errant raven
#

A drop in quality?

#

It's an entire running faucet of drop in quality

#

We past drop levels years ago

carmine wraith
#

and described the whole thing from beginning to end, investers during covid era -> corporate overlords own more studios/publishers -> required immediate gain on investment, like IMMEDIATE not next year -> ship it early, fire everyone (absolutely typical "business just bought by the big corporation" behavior)

errant raven
#

My brother bought the last 3 newly released ubisoft games

#

Watched him play each one. Literally same game, different textures.

carmine wraith
#

title of games?

#

but yea, i mean i dont mind not having to reinvent the wheel every game

errant raven
#

Far cry 6, avatar, watch dogs 2 or something

carmine wraith
#

having some basis like unreal engine or the last game i made as the starting point is nice

errant raven
#

Now hes talking about getting the black guy in japan game