#lounge

1 messages Β· Page 827 of 1

median wraith
#

Get a 3000 series they said, there won't be backer errors

foggy path
#

Discord has an adult image block function?

#

Interesting that people post tities on some servers and it doesn't do anything about those... :D

fresh heath
#

Great tits are my favorite

cursive crypt
#

Which was the first in English? The tit or the tit?

#

Will answer myself: yes

zinc matrix
#

Anyone here know flow chart? I need help for school

lone grail
#

Goodmorning folks

median wraith
#

someone knows if there is or epic gave already

#

some interesting desert cliffs ?

#

I need some big cliff rocks

lone grail
#

What about one of the infinity blade packs?

median wraith
#

that's too lowpoly

#

thats basically for mobile 10 years ago

lone grail
#

Wasn't sure if it was for prototype or not

unborn lotus
#

Megascans got your back

humble remnant
#

2 days until new stuff on marketplace

lone grail
#

There is currently realistic forest pack for free for limited time

median wraith
#

@zinc matrix well something like that but that's the other extreme lol

#

is too small and too big

#

I found what I need

#

that could be better lets say

#

yeah these are kinds bad lol

#

feels bad that you have a lot of assets but no the kind you need lol

lone grail
#

Make the kind you need πŸ˜›

fresh heath
dense storm
lucid walrus
#

chaos isn't fps independent??

dense storm
#

it does substepping iirc @finite lark

solar nebula
#

It is FPS independent, if it wasn't the vehicle would move slower

#

The instability like that is natural for lowering the timestep, but it could have some built-in features to stabilize such things

finite lark
solar nebula
#

As timestep drops, any spring systems will grow more and more unstable, you need to blend in some sort of convergence filter (that smoothes out springs) or do something else (substepping)

lucid walrus
#

I really hope that's super early alpha, or are we going to get left with broken vehicle physics from Epic for another 5 years?

dense storm
#

strange how they released that in fortnite like it

#

i mean 30fps and vehicles is not a good thing

solar nebula
#

It's not strange, you need to have someone who pays attention to details like these to avoid it

#

The developer tuned springs to higher FPS and put in too high of damping/spring constants

finite lark
#

this is with substepping on

lucid walrus
#

Epic really can't program vehicle physics worth a damn, apparently... I mean, apparently the UT2k4 vehicles were made by the Rocket League guys? Now that they bought them, can't they have them put some of that tech back into Unreal?

finite lark
#

with substepping off, the vehicles just slow down

#

but yeah, the same experiment with physx vehicles

solar nebula
#

PhysX Is an actually production ready engine instead of a pretend production ready

finite lark
#

got this stuff reported! hopefully they do something about it

lucid walrus
#

the Physx vehicles have always been utterly broken in Unreal 😦

#

Epic hasn't done shit about the physx vehicles for all these years

solar nebula
#

I never used UE4 vehicles so I don't know. In our game, the vehicles run on custom code πŸ˜„

lucid walrus
#

everyone writes custom code for vehicles, because Epic's examples are utterly, utterly broken

finite lark
#

it's indeed a substepping issue

#

probably they haven't paid much attention into that just yet

solar nebula
#

I wonder if the delta time it gives is broken or something

#

During substepping

finite lark
#

probably

#

very good question

#

I could find it out

#

remind it to me if you can tomorrow plox

solar nebula
#

Sure

lucid walrus
#

This is the way

median wraith
#

meanwhile I don't know how some guys get the PhysX vehicles working lol

#

ala Squad

median wraith
#

no clue if Squad in game have the same issues

dense storm
#

i was doing some research into third person shooting, and vorixo said about chaos vehicles so i had to try it

median wraith
#

its 2021

#

still dont know why Epic never exposed the vehicles settings to BP to be set at runtime

#

like you can only set all in the default panel and you can't do anything else

dense storm
#

just been trying to work out how they do the traces for this

#

like it comes from the pawn somewhere? like its chest?

humble remnant
#

Maybe the gun barrel itself?

dense storm
#

at X distance you can see i can hit the back object and the trace goes right through the first object

#

no cause even when im in relaxed pose

#

(gun not pointing forward) that red cross still shows up

#

which means it has to come from the pawn

solar nebula
#

In my game I made a terrible decision to make the gun be responsible for bullet, so the trace goes in kind of a random direction depending on where the gun is randomly pointing in the animation

#

And the only actual way to get it firing right is to use ironsights, but even then there's residual parallax and possible slight offset of the barrel that you can compensate for by adjusting the knobs

median wraith
#

πŸ˜‚

broken sigil
#

😏

humble remnant
#

I use camera forward vector to determine where the controller is aiming, usually at a set distance since it's a MOBA

#

Out of knowing where it's aimed, trace from starting socket/location to where camera is looking

#

It's a bit of a heavy math that I had asked in here some time ago

#

Particularly due to spring arms and custom distances

finite lark
#

@broken sigil bwoahahahah

#

I love you man

#

hahahahah

#

where's blue when we need him!!

humble remnant
#

Though this is for set distances because in a MOBA you have a range on them

#

P = pawn, C = camera, A = point where you want it to aim, PH is perpendicular to AC and is only used as a value

finite lark
#

that bit is sorted

#

it's actually a game design thing

#

well the distance tolerance is already sorted and cleared out to him

#

only thing missing is finding out the "weapon trace" origin

humble remnant
#

Ah

#

I guess trial and error

#

Maybe it's just a rotated offset from pawn location

broken sigil
#

hahaha
Working on projects for the last 2 years so I've been away from the marketplace stuff πŸ˜›

finite lark
#

yes, it's indeed more a game design thing

#

oooh working in the shadows you are

#

unleashing all your force you should

#

are you releasing soon?

broken sigil
#

Nah I got hired to work on a project, we probably won't release for quite some time :P
If I ever get time to do marketplace stuff in the future I would like to release vehicle physics and AI V2.0

median wraith
#

vehicle physics update or ?

#

there are guys in the marketplace releasing as individual products every update they make as I have seen lol

broken sigil
#

If I ever get to it would be a separate plugin but would like to give existing users a discount but not quite sure if that's possible to do on the MP, gumroad or something πŸ€·β€β™€οΈ
That is if I ever get around developing a new one 😐

btw with ue4 substepping the main problem is that it is variable so at low fps the delta time can still get pretty high but even in that case the vehicle should still behave somewhat properly if delta time is used correctly in the calculation

median wraith
#

do you recommend to use it with your plugin ? the substep

broken sigil
#

yeah, definitely
Can get unstable without it but with it should be stable even at like 10 fps

#

there is that static friction thing that I never got around re doing that can get unstable but I think I updated the default values for it so it should work fine

deep glen
pearl compass
#

I am shocked that fuzzy widgets are fuzzy.

rich quiver
#

epic games HQ is moving out

pearl compass
#

Its the same state and the same city?

rich quiver
#

yup

#

new office is a old mega mall

#

still half of office will be engine development so changes only with more employees in the building

finite lark
#

@broken sigil you seen the chaos issues we posted, right? XD

#

substepping is broken atm

broken sigil
#

yep lol
I tried chaos a few months ago, saw it was broken in so many ways and probably won't touch it till it's fully fixed and production ready for real this time

#

I want to use it since it aims to be fully deterministic which is perfect for networking

fresh heath
foggy path
#

interesting that they're investing in office space when the current trend is remote

#

(significantly boosted by covid)

fresh heath
#

This deal was probably a while in the making

foggy path
#

probably yeah and if it's an old mall they probably got a pretty good deal :P

fresh heath
fathom wadi
white chasm
#

Anyone has some good resources on creative writing etc for video games?

#

lol nuh, not engine or implementation related, story structure, beats etc

#

how to build on your narrative themes and ideas etc etc

fathom wadi
#

I just use my imagination, but I order things like any project management. Often I can start with an intro idea and keep it rolling until story completion. But in terms of game development and and narrative design, you have to focus on what gameplay is affecting everything. A lot of it has to feed the game. Otherwise you end up with two products. A story and a game and they may play awful in combination. I would suggest creating a custom project for a site like Dundoc or Hack n Plan and start ordering the story arcs in a plain, minimal list. Then extrapolate on each.

white chasm
#

Interesting, thanks!

#

Well for now it's not really relevant, still working on my first project, which is just a short experience type of thing, but want to get more into it eventually

strange heron
green horizon
#

hey guys,
TL;DR;
this has nothing to do with code but with pets.dog

Im pretty sure Im gonna get either a Cane Corso or Bullmastiff, but I was thinking if anyone knows about these breed and can recommend any similar one and write a bit about why (only criteria is short coat and big/large dog (reference: at least as big as a pitbull but not pitbull or why not I dont know much about them))

fallow finch
#

I want new ideas guys

#

Someone creative my creativity has been done xπŸ˜‹

fathom wadi
#

a game where a celebrity climbs a ladder and tries to take a dump in a bucket.

fallow finch
#

Celebrity ??

#

Like Mr Bean

fathom wadi
#

any celeb. The bigger the arse, the better.

fallow finch
#

But i think its illegal

fathom wadi
#

i dunno. I take a dump all the time

tender lily
#

this server still got a festive icon?

#

supposed to be unlucky ya know πŸ˜›

tidal ivy
#

6th of January is when all decorations should be taken down by

#

the 12th night of Christmas being the 5th

#

(unless you're one of those obscure branches who celebrate Christmas on the 26th, in which case the 12th night is obviously a day later)

median wraith
#

lol

zinc matrix
#

i dont know what dna test provider i should use.... selfdecode? dnafit? nebula?? NO IDEA ! 😑

#

i surely

#

will not

#

suppport this shitty company

#

id rather support facebook than this fuckery

#

yo wait

#

2,20 euro for 100g muesli.

#

shitty.company.

#

price is everything in shitty capitalism

#

of course what the fuck

#

applei is shit yes.

#

πŸ™‚ i love FB

#

il kill you

#

im vegan. i hate non vegans

#

dont even try

#

youre vegetarian at most.

#

hundehaufen

#

πŸ’©

#

i never called you a hundehaufen

tender lily
zinc matrix
#

can dna test tell me if i need high or low intensity for hypertrophy? and how much muscle i can build per month? or why i am not building muscle right now? if i am a non responder etc.?
iirc the test will show 50/50 whether one is made for low or high intensity.

tender lily
#

ive seen investigative tv shows where people send in a dog's DNA to these shows, and it comes back as related to henry VIII or something lol

#

they dont even pick up that its not human DNA

#

just send some random BS

#

sounds like something a doctor or hospital should do, in all honesty not some online business

#

plus how do you guarantee no corruption of sample in transit, when youre posting it thru the mail

zinc matrix
#

okey okey lol

#

chilll

tender lily
#

but thats just me... and what ive seen about the ancestry ones.

#

i bagsy the meat after the carcass is butchered. im hungry. lul

zinc matrix
#

i now use enzymes when eating

tender lily
#

i use enzymes when eating too. in my saliva and in my stomach acids.... lulw

zinc matrix
#

i mean i use external enzymes

#

cause food has no enzymes when cooked

#

so you need to use external

tender lily
#

dont the ones in your body work perfectly fine at ya know, digesting food?

zinc matrix
#

nah they dont

#

you need enzymes in food

tender lily
#

gross, fake cheese

zinc matrix
#

@tender lily tastes very good

tender lily
#

humans have been eating cooked food for tens of thousands of years. i doubt this new age crap is really something that you need πŸ˜›

#

smells of marketing to me

zinc matrix
#

i think brain has complexs

tender lily
#

nah, just eat. youll be fine

zinc matrix
#

nah. wont.

#

feel much better with enzymes

tender lily
#

S/enzymes/placebos

zinc matrix
#

i am not a believer

tender lily
#

my opinion ^

zinc matrix
#

placebos do not work in gut

#

@tender lily

tender lily
#

you know what a placebo is right?

#

a placebo works because you believe it works

#

doesnt matter if its supposed to be in your gut, or cure a headache, or whatever πŸ˜›

#

its why people drink these silly tiny pots of bio yogurt that cost like Β£5 each

#

oh god homepoathic medicine

#

homeopathic ue4 when? im going to make it, i'll put one line of ue4 against tons of for loops, it'll be a million times more powerful than you think it is. do you believe?

#

yeah tbh this is why I eat most things too, "because im hungry and they taste good"

#

ah, youve been accosted by the millenial hipster

#

careful they lurk around starbucks mostly with their apple laptops

#

but what about a homeopathic blueprint loop

#

if i dilute it with a ton of C++ loops, it'll be better right? because the C++ loops have memory.

#

im also a between-titles age, i was born 1980 so im smack dab between gen X and millenial, depending on who's opinion

deep glen
#

im not even between millenials and zoomers and i feel that

foggy path
#

that tweet ticks all the boxes for me alex

tender lily
#

wait, cursive isnt cut from the curriculum in the uk

#

is this a US thing, did they cut it to make more time for sports so the physically fit can be more effective bullies towards those that arent πŸ˜„

#

j/k

foggy path
#

not sure if they cut cursive here but I get the feeling they might have

tender lily
#

well i only learnt last week that in the US they used to have this demeaning fitness test where everyone had to do these pull ups on a bar and stuff in front of others, which would humiliate those that couldnt do it

#

presidential fitness test or something

#

they only got rid of it in the past 10 years or so

foggy path
#

nice

tender lily
#

even though only like 3% of school age kids could do it

foggy path
#

I think we still have what they call "Cooper's Test"

tender lily
#

it was like the sort of thing you saw oliver queen doing in arrow lol

foggy path
#

which is basically how far can you run in like... 10 minutes or something?

#

most people didn't take it very seriously and would just walk lol

tender lily
#

hmm, how far can I run in ten minutes now? probably a hundred feet, all in the first 30 seconds before i pass out

foggy path
#

Yeah I mean the idea wasn't really to go all out but just try to go as far as you can in the allotted time

tender lily
#

im crap at running, i can walk for dozens of miles without issue though

#

theyre doing this thing in schools atm for younger kids, where they have to walk or run a mile each day

#

i think thats a good thing because a lot of younger kids are physically unfit

#

and for a 10 year old kid, thats REALLY bad

#

they should be active, running around and playing tig and stuff

#

got the rest of their lives to veg on a couch playing games lol

#

i got 3 kids, they all love doing that walk or run a mile thing

white chasm
#

anyone got some mocap for a crucifixion? πŸ˜„

tender lily
#

hmm, t pose and move the arms?

white chasm
#

lol

tender lily
#

nah its more complicated than that i know, sorry, i dont have such a thing

white chasm
#

I'm just kidding

foggy path
#

You could probably rip that from Cyberpunk

white chasm
#

lol true

foggy path
#

since they have a crucifixation :P

white chasm
#

I actually ripped some models off of it, to 3d print

tender lily
#

would you really want to inherit cyberpunks bugs? i bet they even got bugs in the T pose πŸ˜„

white chasm
#

ALT's necklace

tender lily
#

i got that game dirt cheap on release day... like under half price

#

i think i paid $20

white chasm
#

2nd hand?

tender lily
#

no

#

new

#

digital with updates

white chasm
#

how did you manage that lol

#

I paid full price on GOG but I wanted to support the devs

tender lily
#

well CDPR own GOG

#

so, you go to GOG via a VPN to appear to be from russia

white chasm
#

haaaa

#

yes

tender lily
#

and during release the had special offer, and russian pricing made it $20

white chasm
#

I did it on steam

tender lily
#

then once youve purchased disconnect the vpn

#

no way i was going to pay full price for that

foggy path
#

rip

tender lily
#

but i'll play it after the major update they promised

foggy path
#

I have like 100 hours in it

white chasm
#

amm it's a good game

#

same here lol

foggy path
#

I did almost all the side quests and the main storyline

#

I enjoyed it

white chasm
#

played it 3 times

tender lily
#

yeah, problem is i cant play a game with glitches, the gamedev in me tries to find the glitches. i'd glitch myself to the end mission within half an hour and be bored of it

foggy path
#

lol

tender lily
#

so i'll be patient, i got norman reedus walking simulator to play first, and some missions on the outer worlds to finish

foggy path
#

Tbh I didn't have that many glitches in it besides graphical ones

white chasm
#

wonder how Death Stranding plays now

#

without the day 1 players building shit

foggy path
#

Once I teleported through the ground to a totally different location but that was probably the most "serious" one lol

tender lily
#

i saw one earlier someone clipped thru a building and walked along the bottom of the environment

white chasm
#

same here zomg

#

was pretty good for me

median wraith
#

I played the free to play version of Death Strading at Steam

#

had even toilet paper buy mission

white chasm
#

I think CP is very tied to FPS, so if you don't have good FPS the physics system fuck up

foggy path
#

I heard the arasaka tower ruins didn't have hitboxes if you were in a car so that might have been a clip possibility

tender lily
#

another one, someone was talking about a brain chip, but had a gun lodged in their head, pulled the gun out and handed it to the player, seen that one a lot

white chasm
#

haha yeah that happened to me on one of my play

tender lily
#

another one, someone was driving and all of a sudden their character was propelled out the car naked, their clothes staying in the car and the car coming to a complete stop, physics launching them across the map in their birthday suit

foggy path
#

Yeah there's a few animation bugs and such but it's just stuff that happens at random, I don't think you can really cause it to trigger

#

lol

#

the t-pose naked on top of car happens on occasion but it never caused any issues besides it looking weird

fallow finch
#

Is it possible to make crossplay game through PC and Mobile ?

foggy path
#

Sure

#

Among Us is one example

tender lily
#

oh and people sitting in driving pose on top of a motorbike

#

that ones funny

fallow finch
#

With 2 different Graphics

white chasm
tender lily
#

but the one that puts me off playing just yet is cop spawns

#

cause some crime, in the middle of nowhere, turn around and behind you a million cops

fallow finch
#

Using Playfab or any crossplay servers services

foggy path
#

tbh the most serious crimes I caused was because I drove carelessly over pedestrians

tender lily
#

someone else committed a crime in an elevator, turned around and 20 cops in the elevator with him

white chasm
#

lol

#

I mean, that shit is hilarious man

foggy path
#

I wasn't really interested in trying to just cause chaos like in GTA or something lol

white chasm
#

those are fun bugs

foggy path
#

@fallow finch sure, nothing stops you from doing that

fallow finch
#

Mate

#

You are always motivating me fu** im happy πŸ˜‚

white chasm
#

I played spec ops after CP and I swear it had more bugs

tender lily
#

its like they DONT want you to cause chaos

foggy path
#

lol

white chasm
#

I think they shouldn't even have a cop system honestly

foggy path
#

well you were pretty screwed in all of them with big wanted levels

tender lily
#

the main problems are if you travel at speed on a highway, NOOSE roadblocks spawn in front of you without enough time to react and turn away from them

white chasm
#

it's not GTA

#

they should maybe send some hitmans after you if you get a bounty, that can come at random times

foggy path
#

rumor mill says the cop pathfinding AI worked fine until someone screwed it up and they didn't have time to fix it

tender lily
#

sure, a crime system, but in a city where everything is cyber, why have physical police? the punishments could be remotely triggered

white chasm
#

well they do spawn cops πŸ˜„

#

dark future

tender lily
#

"attention murderer. You have committed a crime against the city. Your muscles have been disabled, please stay where you are and await collection by police drone"

foggy path
#

but yeah it does feel like there's tons of systems in cyberpunk which were partially implemented but they couldn't finish or flesh them out on time

tender lily
#

i mean thats the obvious approach with the tech they have in that game right?

white chasm
#

nuh I think everyone is using ripperdocs because it's unmonitored

tender lily
#

it overburdens you, slows you down and youre chased by drones that have the intent of taking you alive to the cop shop

#

hmm, true

white chasm
#

lore wise at least

tender lily
#

even then.... it would make sense that no human cops, just drones like the ones that come first

#

i mean why risk humans to catch a violent criminal

#

they could fly in at speed from some central dispatch

#

rather than spawning on top of you

white chasm
#

it's not really scifi

tender lily
#

yeah its more sillyfi

#

but fun

white chasm
#

idk, all I cared about is the progression system and the builds you can make

#

fun wise it's one of the best I played

foggy path
#

my biggest complaint is that almost all the characters are pretty fucking miserable :D

tender lily
#

yeah thats why i considered it worth my $20 even with breakage, because i like open world exploration and character progression

#

lol demolition man love it

foggy path
#

they kill off the only character with a positive attitude at the start

tender lily
#

"john spartan, you have been fined one credit for violation of the verbal morality act"

#

πŸ˜‚

#

well if you lived in that place wouldnt you be miserable with a negative outlook on life

#

unless happy mind uploads are standard for all

foggy path
#

sure but it doesn't mean the entire game has to be like that

tender lily
#

yeah, true, if you want hidden humour, fallout is where its at

foggy path
#

like, it would have been fun if they had a few more of those flaming crotch man quests and stuff

white chasm
#

what about ozob

foggy path
#

lol yeah that one was pretty weird

white chasm
#

I laughed my ass off when I saw him

#

caught me by surprise

tender lily
#

you dont need funny quests with all the funny glitches

#

i mean whats funnier than a shadow falling out of the sky, and bleeding πŸ˜„

foggy path
#

lol

white chasm
#

shadow falling out of the sky?

tender lily
#

yeah

#

theres a bit where a guy is supposed to fall from a building and splat on the sidewalk

foggy path
#

I played Yakuza 0 a while back which is sort of similar in the sense that you run around doing missions

tender lily
#

sometimes the character doesnt spawn but his shadow still projects

foggy path
#

that game has a super serious main storyline

tender lily
#

and the blood effect still spawns

#

so you get a bleeding street shadow

foggy path
#

but most of the side quests are completely off the wall lol

white chasm
#

lol didn't see that one

foggy path
#

it's a nice balance

tender lily
#

its in LTT's playthrough

#

ive seen it in other places too though

white chasm
#

there's an LTT playthrough?

tender lily
#

yup

white chasm
#

since when are they doing it

tender lily
#

he plays it at 8K because he likes to heat his home with RTX 3080

#

they had an episode sponsored by CDPR i think

white chasm
#

I played it on 4k

#

48inch oled

#

it was perfect

tender lily
#

theres one of bitwit

#

LTT was um... lemme find

white chasm
#

ah it's just one of their videos

tender lily
#

might have been bitwit with the bleeding shadow

white chasm
#

probably saw that already

foggy path
#

also I think they fixed some of the bugs by just removing your dick

#

there was a bug where the dick would randomly poke through your clothes

#

so now you just have no dick anymore lol

tender lily
#

🀣

#

ive seen nipples poking thru tops

robust gulch
#

Day 3 of compiling shaders

#

just kill me already

fluid bloom
#

oh my fucking god

#

AMD just cancelled shipments of 5900X to retailers in Finland (or some at least) due to shortages

tender lily
#

@robust gulch how many shaders you got?

robust gulch
#

Last night it was 50 then I checked this morning and it jumped up to 200

#

Now it's 167

#

165

#

I don't even know what's taking so long to compile

#

I only got like, 2 marketplace assets that would need this

median wraith
#

another one ?

zinc matrix
#

Any good substance painter tutorial for beginners?

zinc matrix
median wraith
#

lol no

#

I can't make something so fancy

ancient ingot
#

hevedy is awsome

median wraith
#

Awsome

ancient ingot
#

Hevedy make me a AAA game pls

median wraith
#

I'm trying to make slope physics as good incompetent

#

Let me alone

ancient ingot
#

have fun with that

#

lol

median wraith
#

Lol

ancient ingot
#

@median wraith how are you querying the surface?

median wraith
#

bad

ancient ingot
#

can i just say multiplayer is such a headfuck

fresh heath
soft night
#

now intel is winning it again

carmine frigate
#

i dunno its kinda hard to say with all the hardware shortages

#

my cpu is about a year old now but its 50$ more expensive if i buy it now

cursive crypt
#

Word is that there is an unknown monster which eats all that new gpus and cpus... it ambushes the delivery trucks.

carmine frigate
#

also 2080ti still sells for like 1700$

#

ill prolly get some mid tier amd card around this summer

median wraith
#

Chaos is 22 times slower than Nvidia

#

πŸ˜‚

soft night
#

Chaosengine is so fast it rule the universe right

deep glen
#

@gloomy badge yup

median wraith
#

@ancient ingot fixed it all

#

Battle Royale in the mall

#

I fixed a physics bug with the landscapes

#

I had that problem since 6 years ago

#

good lord

fathom wadi
sage tendon
#

hi

deep glen
#

hey rem

sage tendon
#

Hey, best wishes to you in D-Town!

deep glen
#

thanks hehe, likewise! (outside of d-town)

tulip orbit
#

wishful thinking?

sage tendon
#

you need something to cast the shadow on

#

ah lol ok πŸ˜›

tulip orbit
#

I was gonna say that, but I thought you should figure it out on your own πŸ€₯

timid tundra
#

I've been trying to report a bug for weeks but every-time I try the website just keeps infinite loading

tulip orbit
hollow zephyr
#

Happy New Year everyone ❀️

delicate lark
#

Happy New Year!

hollow zephyr
#

Can't wait for us to get all the cool stuff the brains here are cooking for yah into your hands

tulip orbit
#

its a new year already? why didnt anyone tell me?! There should be a day for it

delicate lark
#

actually it is just 2020.2

hollow zephyr
#

That's what I've been saying lol

tulip orbit
#

2020: The sequel

delicate lark
#

or it is just 35th of december 2020

hollow zephyr
#

The year starts off still in the pandemic so it can just get better from here right?

#

a mutated strain appears

delicate lark
deep glen
#

dang that smile is scary

solid aurora
#

but man I can't wait for UE5

#

going to migrate project as soon as it releases

bronze axle
#

Prepare for UE6.

#

The next next gen is already here.

#

It’s self aware. UE5 is actually created by UE6.

solid aurora
#

it is simply next step of evolution

#

humans are obsolete

bronze axle
#

Yes. Soon there will only be Unreal.

deep glen
#

epic sells all their gamedev content and starts a fortbucks coffee shop

bronze axle
#

Lol Fortbucks. πŸ˜‚

#

Starbucks and Epic Games present: Starry Nite

deep glen
#

fort topic clothing store

bronze axle
#

Because your character needs a venti latte.

deep glen
#

a @tiny token latte

#

a sweeney beaney bag store

quiet narwhal
#

Wait until Epic realized that UE3 was actually the best in the series and does a rebrand of UE from 4 to 3 instead of 5.. just saying

bronze axle
#

Nostalgia factor.

#

Unreal Engine Classic.

quiet narwhal
#

omg... actually imagine if they just go back to Unreal Engine

bronze axle
#

Lol

quiet narwhal
#

"We decided to just start over so we thought it would be appropriate if the numbers did as well"

bronze axle
#

I hope not. It’s confusing enough when game franchises do it.

quiet narwhal
#

and then we can get the remake of Unreal in Unreal Engine but not in Unreal Engine that Unreal was originally made in

bronze axle
#

Unreal doesn’t need a gritty reboot.

foggy path
#

going out of version numbers seem like a very modern thing to do tbh

#

go into a rolling release system

#

:P

bronze axle
#

I don’t see how doing away with version numbers is modern.

#

I think they’re helpful and serve a useful purpose.

foggy path
#

well I mean there's a few other things which have lost the number or just gone back to 1

robust gulch
#

less is more in modern i guess

foggy path
#

I didn't mean modern as in good

#

I just meant that it's a thing that people do nowadays lol

bronze axle
#

Oh lol I see.

solid aurora
#

you just as well use changelist number instead of version

bronze axle
#

Yeah. I’m not a fan.

foggy path
#

Yeah :P

#

tbh it seems unlikely

solid aurora
#

I do think that explicit version numbers only make sense for infrequent updates

foggy path
#

version number increases are an easy marketing opportunity

solid aurora
#

for software like unreal which is under constant development ? not so much

fathom wadi
#

We should name releases after Hurricanes. Name stealing nature based bastards πŸ˜„

foggy path
#

Don't they have a list of names from where they name those

quiet narwhal
#

it could be worse, it could be the Unity naming convention now with years that dont match up with the year they are released

fathom wadi
#

Not sure I haven't worked at the weather place for a while

#

hah

#

Unreal 4.lastweek

foggy path
#

git actually has an extremely handy feature where you can specify commits like that

fathom wadi
#

yup

foggy path
#

like.. head@{one.week.ago}

robust gulch
#

Why cant Unreal just show the actual number of shaders it's going to compile instead of showing 20, and then jum,ping up to 89, then up to 100, then down to 20 again

fathom wadi
foggy path
#

I remember we had a random VHS tape of that when I was a kid

fathom wadi
#

one of them theme tunes you just don't forget

robust gulch
#

The only thing I've done while compiling shaders is import a WAV

fathom wadi
#

why would you do anything whilst importing shaders? The SWC absolutely wrecks my processor to get the job done

#

erm... .compiling shaders my bad. Listening to something

#

got my wires crossed πŸ˜„

robust gulch
#

lol, I do that all the time

fathom wadi
#

side effect of not looking at what I type. I let the mind run free πŸ™‚

#

That would be a bug. I've compiled 50k shaders in a couple of hours before. Unless this project is the Kite demo or some crazy shit πŸ˜„

#

I wonder what would cause it? Perhaps some error checking on a corrupt shader trying to cycle it without an exit?

carmine frigate
#

kite demo aint that hard by modern standards

fathom wadi
#

I've yet to see a project take longer to compile myself. But then that means nothing. I'm not "Mr.EveryProject 2020" or anything.

carmine frigate
#

broken stuff takes longer to compile

#

cuz that shit just wont compile

quiet narwhal
#

compiling can take too long if you are using the 1 thread version of incredibuild on accident

fathom wadi
#

presumably. HLSL is compiled and I would presume incredibuild would manage that too

quiet narwhal
#

yep it affects it

solid aurora
#

invest in 16+ core CPU [;

quiet narwhal
#

very common for people to go "why does it take so long its not using any of my cpu waaaaaaah" to find out they checked incredibuild when installing visual studio

fathom wadi
#

I have a 4 core processor still. It's starting to feel archaic

carmine frigate
#

im pretty sure it uses my cpu alex '

fathom wadi
#

@zinc matrix think you need to install it from the launcher iirc

#

the VS launcher

quiet narwhal
#

yes it comes by default, its not installed by default unless you check it. people read "makes stuff fasters" and check it without knowing what it is

#

it is part of the general install when making games on the right

fathom wadi
#

I like it when people start using it halfway through a project and wonder why they can't get it working right.

#

Apparently you can't say the c-word on Facebook anymore. I wonder what Chaucer would say.

#

Chaucer - "Ye olde bunch of cu..."
Facebook - "Hate speech".

robust gulch
#

Bruh
I just watched my shaders jump from 2 to 14

fathom wadi
#

what is a bruh? Is it like saying brush with a speech impediment?

robust gulch
#

It's pretty much the non-swearing equivalent of fuck

fathom wadi
#

fuck isn't swearing

robust gulch
#

Wait

#

I looked in my Output log

#

I keep seeing stuff like this

#

LogCook: Display: Cooked packages 485 Packages Remain 1033 Total 1518

wintry karma
#

fuck isn't swearing ,"fuck you" is.

fathom wadi
#

thats probably the reason

robust gulch
#

So do I have 485 packages left or 1033

fathom wadi
#

remaining 1033

robust gulch
#

So hopefully if I run it for another night it'll finish

fathom wadi
#

probably. Just keep an eye on it

robust gulch
#

Alright

#

I hope I never have to do this again

#

Isn't Unreal Engine 5 gonna fix this?

fresh heath
fathom wadi
#

the list of things you can't say is stupid.

robust gulch
#

Coke gives me a headache

fathom wadi
#

In fact, fuck that place. It's not worth browsing if it allows people to insult me and I can't have my cathartic outburst. It's psychologically damaging to limit the human psyche to such stringent limitations.

robust gulch
#

NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

#

179

quiet narwhal
#

@robust gulch compiling shaders? no UE5 will not change that

robust gulch
#

Ohh, yeah I mixed up lighting with shaders

fresh heath
robust gulch
#

poggers

fathom wadi
#

The problem though was only businesses had them πŸ™‚

#

Imagine if we had access to computers at the same time as business. Homes would have been twice as large to house the 8k hard disks πŸ˜„

#

@zinc matrix it's algorithmic but some beardy (or baldy in the case of Boz) arse thinks he's the ruler of the world's speech now. That is the way to kill freedom. Start with language.

#

nobody can. It sounds like raw fish that tastes nice but isn't but people think it is πŸ˜„

#

What I don't understand is if this algorithm is so good, why doesn't it catch the initial insult, understand the retort is cathartic and warranted, and let it slide or delete the original comment? They want this effect.

tiny token
#

@deep glen OK, gonna give you a latte asap

deep glen
#

thanks vence

fathom wadi
#

@zinc matrix haven't seen him about in past cpl of days or so. Seen him around?

#

I always get nervous when community people just disappear. It's either a good thing because they got picked up for work, or worse.

deep glen
#

oh god.

This is a tale of a world where "horse girls"; with glorious names and incredible running abilities live alongside humanity. Horse girl Special Week has moved from the country to the city to attend Tracen Academy. There, she and her classmates compete to win the Twinkle Series and earn the title of "The County’s #1 Horse Girl.```
fathom wadi
#

that clip was a meme for me before I had internet.

#

Left and right hemisphere of the brain working together, but not always on the same page as anyone else's

#

genius is often misunderstood

deep glen
fathom wadi
#

cant for another 3 days. oops πŸ™‚

deep glen
#

XD

#

lol, all good

#

i have zero luck with reddit though, my posts always get downvoted into oblivion

#

also, games done quick is on

fathom wadi
#

"A round box, also known as a barrel" πŸ˜„

deep glen
#

new marketplace pack
"round boxes and square barrels"

fathom wadi
#

well, it might sell seeing as its unique currently πŸ˜„

#

do it with the disclaimer : all proceeds goto charity

#

it's ace watching speedruns as a dev. Knowing you probably left some stupid shit in somewhere too, but you watch someone else's mistake and mentally fix it with hindsight πŸ˜„

deep glen
#

ikr hehe

#

ah yea, ign has a "devs react to speedruns" playlist. quite fun

fathom wadi
#

I'd love to focus on old arcades games for speedruns. I never get sick of trawling my emulator collection.

#

About a month ago, I got Virtual Pinball and flipped my monitor. Played some tables from when I was growing up and it was perfect.

#

I wouldn't even call it an emulator at this point. It simulates

deep glen
#

i always go back to my nes/snes/sega collection when bored

fathom wadi
#

I think its too simple as it is tho. I'd probably add some stuff

#

who woulda thought that jumping over a fence worked.

median wraith
#

What the hell you found lol

fathom wadi
#

about to start now

median wraith
#

You can name some game that's stupid but fun whatever the time you spend playing it?

versed maple
#

Epic Games bought a mall

foggy path
#

Vaporwave confirmed

versed maple
#

@last badge wrong place

last badge
#

where?

rich quiver
#

itch.io horror category is like spaghet weirdness

bronze axle
#

There's a lot of gems in that category.

#

Some great indie horror there.

zinc matrix
#

Small question, that I don't see an appropriate channel for, how do you setup your development environment, do you like to have a separate boot, or user, partition everything off separately for your general use OS

teal kindle
cursive crypt
#

Yep, these news are circulating the past few days.

teal kindle
#

Im sure teh question has been asked and answered many times now then but

#

does it have any common items?

drifting forum
#

E-Mart

teal kindle
#

like.. common.. superior.. rare.. epic

#

get it?

drifting forum
#

none of the above lol, it's just epic

teal kindle
#

πŸ˜„

drifting forum
#

too bad NWI is giving me a hard time, excluding mer from their server so i cannot entr a contest, i bought every INS they produced, get no love,

#

latest footage is in WIP

#

i gotta add light fixtures, tweak the day/night make rain torrential, and adjust the windows and doors, but over all looking good

teal kindle
#

looks kinda nice

#

quickie q.. is there a trick to doin the walkboards or watever

#

between huts, elevated wooden walking stuff

drifting forum
#

TY, think Far Cry 2 or 3 with squad tactics and actual teams, one is FFA (FreeForAll) Domination but the other 2 that aren't working are TDM and Firefight (fight to hold the center, the 2 huts, or the mansion)

teal kindle
#

saw some sloping with terrain I think

#

ah its like a premade full compound kinda?

#

(words.. lol)

drifting forum
#

yeah muddy sand, it's more about gameplay than Graphics, doing it all myself

teal kindle
#

eveyrbodys doing the prodigy child thing nowadays lol

drifting forum
#

i gotta figure out how to put spawns in cuz their toturials are broken

#

ui've been modder since 2002

#

i've

teal kindle
#

niiicee .. I didnt do much modding other than early quake 1 lmao

drifting forum
#

wanted to collab but their team was mistreating my, all prejudiced

#

NWI was

#

still is

teal kindle
#

nwi?

#

my brain's in 2nd gear.. not recalling anything lol

drifting forum
#

New World Interactive, theyre having a mapping contest for Insurgecncy Sandstorm on UE4 Mod tolls

teal kindle
#

oh

#

oooo epic should do a movie with jay and silent bob

#

in their new mall

#

Epic Mall Rats

drifting forum
#

Paul Blart

teal kindle
#

NOT EVEN KIDDING!

#

and a game to go along with it

drifting forum
#

camero but in Kareem Abdul Jabbbar suit

#

cameo

teal kindle
#

I dunno why but thats funny as hell πŸ˜„

drifting forum
#

hehe

teal kindle
#

@dapper covecisionmakingguysatepic read the above for real ..

drifting forum
#

Paul Blart Mall Cop had him run into a sports store and 2 seconds later he was already in a golaie equipment getup

drifting forum
#

this is the kind of level designing i wanna do: https://youtu.be/XX--E5zHAGM

Breathe and Take Aim: CI Games Teases Extreme Long-Range Shooting in Sniper Ghost Warrior Contracts 2.

CI Games takes the best-in-class sniping experience to the next level with precision long range shooting with targets over 1,000 meters away.

CI Games shared an in-engine teaser for Sniper Ghost Warrior Contracts 2, setting the stage for one...

β–Ά Play video
teal kindle
#

what are you noticing specifically in that clip that you're liking/wanting to master?

median wraith
#

Today is the new free assets day?

#

XDD
You said it because the mods?

drifting forum
#

@teal kindle The detail in the mountains and the smaller details like interactive grass, for eg. long with wind sway (Project Nature has Material Pivot Painters now) so in any levels i create i would want that level of attention to detail, also since i'm doing an insurgency map, which is based in iraq, i am thikning of that too, plus Siberia in SGW C1 isn't as pretty

#

i need to learn landscape material tessellation in addition to landscape WorldPosition Materials, for cliffs and plateuas

#

free assets every month

median wraith
#

Material tessellation will be removed soon

#

:p

#

Sniper ghost warrior levels aren't exactly an example of proper level design tbh

#

There are a bast number of other aaa that have levels better calibrated

drifting forum
#

i meant visual style man

#

it works for a 1500m shot tho πŸ˜› noob

#

and source on mattes getting removed plz?

fluid bloom
#

today is a friday

#

tomorrow is a sunday

#

then it's a monday again

#

after that it's friday

median wraith
#

I will try to make a pullrequest to fix the landscape collision with physic objects

#

I did almost 10 pullrequests fixes and additions

#

by now epic will pay me a 10% extra when I release something

#

πŸ€ͺ

median wraith
#

there you go

#

now I can sleep until end of year as my good action were done

#

did someone notice all the sub dev branch stop in public updates by the 4.26 creation ?

#

and there is no more activity anymore

cursive crypt
#

They moved to secret 5.x?

median wraith
#

Maybe

#

But they should rename the branch to 4 or something

#

I mean the repo

cursive crypt
#

I'm sure there is such repo, just not public. I can make one too: git clone github/ue4 ue5

median wraith
#

yeah I mean

#

the Unreal Engine 4 repo is called

#

UnrealEngine

#

not sure if will keep in the same or will them make a new one

#

the master is getting a lot of changes

#

but are mainly fixes

#

by the next month they will release something I bet

#

as they did with UE4

#

just this time comes with the promised features :p

#

even if the engine don't come with big changes to me is fine

#

they did an awesome work from 3 to 4 on interface and editor framework

#

way more usable

#

UE3.5 at some point looked like a frankenstein of different widgets and things that totally didn't fit

cursive crypt
#

Man... imagine they add panning to the Texture Viewer... that's worthy to make it 5.x

median wraith
#

lol

fluid bloom
#

AAAAA

median wraith
#

hey Frostbite update by their video was just wind functions and couple things more

fluid bloom
#

my new computer won't be shipped ever at this rate

#

whole Finland is out of AMD CPUs

#

D:

median wraith
#

my whole country is out of bikes

#

nvidia gpus

#

and more

#

πŸ€ͺ

#

but we got coronavirus

#

do you want some ?

fluid bloom
#

2000 of them

#

πŸ˜„

ancient ingot
#

so u reckon the gui for ue5 will be any different to what we have now, design / colour scheme etc ?

robust gulch
#

Probably, I bet it's gonna be something like DarkerNodes

#

But anyways @twilit pivot

#

Yeah, game dev is awesome and so is space and I mix those together so I can squish frogs with asteroids

twilit pivot
#

lol moving to another channel really kills the transition of a good conversation

twilit pivot
#

oh god Unreal just opened visual studio

#

oh god no oh no god please no

robust gulch
#

Noooo

#

Just close it

twilit pivot
#

lol visual studio is so irritating to me for some reason

#

I hate Visual Studio more out of all my IDEs

#

yet Visual Studio Code is my favorite out of all of them

robust gulch
#

I think Visual Studio 2017 is fine

#

It's 2019 that grinds my gears

foggy path
#

Visual Studio is fantastic for C#, but beyond that hard to say :P

#

I certainly struggled doing C++ for unreal with it

robust gulch
#

yep

#

i pretty much only use it for Windows Forms

ancient ingot
#

dammit i forgot about rider, i just installed vs 2019 the other day 😦

median wraith
#

UE4 have a lot of macros and custom things with cs builders

#

That's why works bad with it

#

Works fine with any c++ simple project in other hand

#

Always I post at cpp I get ignored lmao, or the 99 of times

north dragon
#

Not only simple project. VS works pretty fine with big ones as well. But when it comes to UE, you simply can't correctly match UE project model on vs/sln/vcxproj files, so it's all lights and mirrors and cutting corners...

cursive crypt
#

ReSharper helps a lot for VS + UE, like a lot. I also spent a day fixing my own colour scheme πŸ’ͺ

#

... modeled after my Vim ofc πŸ˜„

solid aurora
#

just use Rider

cursive crypt
#

Who? Me? haha, no.

solid aurora
#

everyone : P

north dragon
#

Why though?) I've heard good things about Rider ;)

median wraith
#

Rider is paid isn't it?

north dragon
#

"Rider for Unreal Engine" (aka Rider with C++ and Unreal Engine features) is in Preview stage right now and free until release

median wraith
#

I hate that

#

the comments

#

single line comments using multi line is the wrost you can do

cursive crypt
#

UE works with VS, VS is used for many other stuff. I avoid VS in general, as I'm terminal dude, but I'm unwilling to invest time to learn yet another hype tool. There is nothing bombastic which it can provide πŸ€·β€β™‚οΈ

median wraith
#

and then need to comment a file for removed features and you cannot

fathom wadi
#

nice. Wake up with hives. Find out im banned on facebook for another 2 days for reporting someone who was abusing me. This world is a fucking joke ;/

north dragon
#

yet another hype tool
Rider's been around for awhile now. Not Rider for Unreal Engine though
There's nothing bombastic it can provide
Don't know about that. I can't be trusted as I'm a developer from Rider team, but one single feature that I've fell in love after moving from VS is instantanios search for text.

cursive crypt
#

What is that last thing? Yeah, you maybe right its not new, it was not important reason anyway I admit.

north dragon
#

like "ctrl+shift+f" in VS. No more waiting for search results to roll out, they always show up right away in Rider. Though you pay the price in advance for longer project opening times, but my personal work flow is open project once in the morning and keep it opened)

cursive crypt
#

Hmm.... okay πŸ€”

fresh heath
fathom wadi
#

bonus

fresh heath
#

Perks of being Russian

fathom wadi
#

Unfortunately I need it right now to talk to my family

#

and all I did was reply to a troll by calling him a c**t. Nothing harsh. I mean, thats practically romance talk where I come from

#

but apparently you can't use that word anymore. So I took a day ban. And the trolls kept coming. So I reported one and they banned me for another 2 days.

#

you can't make that shit up

#

some algorithmic person needs to deal with the source of the aggro rather than the person defending themselves.

lone grail
#

Good morning folks

median wraith
#

Always I see that face

#

a Boy and His Kite

#

well if the tool code for me I will pay

lone grail
#

I quite enjoy Rider for UE, I like to code but learning UE C++ was slow, with rider it's much quicker to figure things out since intellisense actually works! lol

median wraith
#

idk my visual algorithms are foked so I find some kind of relative between that and the project someone did here for a jam

#

were like a evil version of the guy

fathom wadi
#

@lone grail I don't even use intellisense most of the time. I don't use any extras for that side of things. I tried VAX but it didn't work on my install. So now I just follow the white rabbit.

lone grail
#

I didn't want to pay for any addons for Visual studio, but Rider just makes things easier and more fun than when I used Visual studio with nothing else lol

median wraith
#

nice music bundles where all the music sound alike lol

fathom wadi
#

I'd use any addons I can to get a faster workflow but with VAX not working I just carried on regardless. I would say it helped but it definitely slowed me down a little trying to figure stuff out

lone grail
#

I can't go back to VS after using Rider for UE but for other things that aren't C++ I use VS Code which has plenty of free addons that help

timid tundra
#

@median wraith Only cases I had to use multiline comments for a single line is because I add comment headers to section of say properties and components on a actor.

Header comment is made with multiline and if I used single line comments on the property the header would show up in Unreal when hovering over the property.

north dragon
#

I'd say the weakest side of Rider right now is it's support for UE4 natvis files, so you might want to keep VS around for it's debugger and we don't have any support of consoles/mobile eg you won't be able to deploy/debug your game on the device from Rider (though we plan to add it eventually)

lone grail
#

I do still have VS since Rider is still in beta, though it'll be at least a year until I can start thinking about porting to consoles so that's okay

fathom wadi
fresh heath
#

It's kinda pointless

fathom wadi
#

hahah no shit. Im sure a VPN will do the trick

#

this rings true for me. I used to be an incredible douche when I was younger but I am nothing but a self-educator and I have come a long way through ignorance to get to today's me. This was done through respectful discourse, not cancel culture.

median wraith
#

the 4.26 looks kinda broken from what I notice tbh

#

physics side etc

fathom wadi
#

I remember physx. those were the days

median wraith
#

lol

#

still no clue at all about why Epic made a physics system from ground

#

rather than use bullet or alike

fathom wadi
#

why not?

#

there is always going to be some core issue that brick walls development when you try customise a physics engine into your game engine. Perhaps they thought it best to sideline all that and get custom integration without having to be limited by the constraints (no pun intended) of the physics software.

median wraith
#

seems like they still got a lot of work to do

fathom wadi
#

I don't think the industry is going anywhere so time is only relevant to the individual

#

evne if it takes another 10 years

median wraith
#

indeed

median wraith
#

999 limit stack

bronze axle
#

Time for a limit break.

median wraith
#

oh interesting

#

where si the free of the month ?

#

oh there is no free of the month

#

o_o

#

this is funny I wanted a mine thing and they gave it now

#

ty Epic

fathom wadi
#

ty im happy someone got it πŸ™‚

median wraith
#

fak

median wraith
#

@zinc matrix

#

oh yeah

#

now got it

foggy path
#

time to make red dead redemption for unreal

fathom wadi
#

voxels

#

displacements

#

a nice shader and some audio helps

median wraith
#

yeah, Tim Sweeney is here and read me the other day

#

my foking computer cannot even load this

#

look the fps lol

#

have volumetric enabled

#

and that but

#

the hell

#

why the base pass is so costly ?

#

well I got the probes edited but still

solid aurora
#

you should check insights it have detailed profiling data

fathom wadi
#

that some good assets though @median wraith

median wraith
#

@solid aurora hows that used ?

#

I think that have new parts added at 4.25 ?

solid aurora
#

idk if I did something special to capture GPU data

median wraith
#

It looks like CPU only?

fathom wadi
#

when I was a kid I skipped school to play this game. But it happened to be the day that my parents had decorators round the house. They caught me and I was banned from my computer for 2 weeks.

cursive crypt
#

Can't blame you. I skipped for much longer. Mostly Sega Genesis games tho.

solid aurora
#

"ModularGameplay system

  • Actors can register/unregister with the system in order to receive injected components from other systems such as a game feature plugin

  • Systems can add actor->component mappings (if an actor of type X registers with the subsystem, add a component of type Y to it)

  • This also handles existing actors that had already spawned and registered, if a system is brought online after some actors are created"
    [8:07 PM]
    "Game Feature Plugin Subsystem …

  • Each game feature plugin can be independently enabled or disabled, with clearly defined lifecycles for when assets are loaded and registered

  • Games can customize the process via a UGameFeaturesProjectPolicies subclass along with UGameFeatureStateChangeObservers

  • Individual plugins can customize the process via UGameFeatureAction subclasses, with built-in support for adding components to the modular gameplay system or registering new cheat managers"

fathom wadi
zinc matrix
#

Ok tell me ur parts

fathom wadi
#

penis, balls, man nips

zinc matrix
#

Bruh

fathom wadi
#

dude

zinc matrix
#

Pc components

rustic gulch
#

Just a sec

fathom wadi
#

sorry. didn't realise we were being PC πŸ˜„

zinc matrix
#

Yes

rustic gulch
#

Here are the system specs :
Ryzen 5 3400G (APU)
Gigabyte B450 motherboard
16GB DDR4 dual channel memory rated at 3200mhz
Corsair's 550W bronze rated power supply
2tb WD hard drive
480GB nvme SSD
And some extra fans to keep the pc cool.

zinc matrix
#

No gpu?

fathom wadi
#

whats the GPU?

#

also better PSU

#

32gb of ram is pretty much standard for me now too

zinc matrix
#

I think the psu is ok if you don’t want upgrades

#

I have 16gb ram and it’s ok for ue4

rustic gulch
#

I mean I chose an APU since graphic cards are out of stock even the 16 series here is our of stock

zinc matrix
#

32 would be cool but 16 is enough

fathom wadi
#

it's on the edge and any externals could stress it. But I wouldn't go less than 750w for a 1080ti. Whether that stands with a 2080 or 3080 I dunno

#

I have VR and stuff tho with all my usb filled

zinc matrix
#

I think that for unreal engine you need atleast a 1060

rustic gulch
#

I mean tbh I'll be making very basic things greyboxing block outs and using blueprints

#

Not AAA stuff rn

fathom wadi
#

I wouldn't go with less than an RTX card now. But mostly because of futureproofing

#

the 1080ti can handle in editor RTX most times but often it crashes when it's enabled

#

especially with complex landscapes apparently

rustic gulch
#

I mean again I'll be doing greyboxing and I was thinking of going for a 1650 or 1660 super

deep glen
#

16gb enough. lol

rustic gulch
#

That's why I chose a 550 W PSU

fathom wadi
#

well its 350-400w for the 1060 so you can gauge it from that.

deep glen
#

you cant get the full 550W from a psu, and the more W you pull out of a psu, the shorter its lifespan and potential complications. you need wiggleroom

#

and it being bronze means.. well.. its max output is crap

rustic gulch
#

Oh Okies I get it so a 650 W will be ok? Or a 750 W BC am on a really tight as hecc budget

deep glen
#

then i'd wait

#

or see what parts you can get second hand/refurbished

rustic gulch
#

Okies I can do that

#

Thank u everyone ❀️

deep glen
#

good luck, and be patient with getting a new rig. its often worth it :)

rustic gulch
#

Okies

fathom wadi
#

I take 3 days to build a pc because once I found exactly what I want, I then go shopping for bargains. It's always cheaper somewhere else.

fresh heath
fathom wadi
#

which one of you motorcity muthafuckas wants to bet me.... this one isnt? FIRE IT UP !

#

I got a like from DPK the other day on Twitter. We both wear parkers so I complimented him on his. It was a true moment for me because he has been in my favourite movie of each decade since 1970's

#

listen to the Doc. He knows his stuff. Plus, I wishlisted this months ago πŸ˜„

#

i like it but then I like turn based and martial arts so its a new one.

#

true but then you can appreciate games is a way you couldn't before also.

deep glen
spare glade
#

Hehe i used to make maps for the first CoD games back in the day.

#

The Radiant editor was fun

foggy path
#

I think first ones I tried were wolf3d, rott and build engine editors :D

swift narwhal
#

yo

#

Covert X beat the impossible

red pewter
#

not sure if this is going to be what eventually replaces the ol' CMC or if this is just serves as a test

tidal ivy
#

seems like an example, rather than a strictly useable component

solid aurora
#

it's start of new CMC

#

useable version might be somewhere around summer

sage tendon
#

grass growing in slow motion.. never thought I would watch that

median wraith
#

😜

fallow finch
#

Where is my Present guys ???😩

#

Today is my Birthday xD

median wraith
#

today is the Santa version here

#

happy bday @fallow finch

fallow finch
#

Thanks mate

median wraith
#

oh siet

#

Synth textures are the worst think you can ever find

fallow finch
#

What texture

median wraith
#

them all

#

for example in this case

#

the monitor screens are a resolutions that cannot work with Mippaming

#

and the other is a x4 texture x10 times

#

the same texture that just change a color

deep glen
#

because hueshift is not a thing <_<

#

lol

median wraith
#

no

#

they just change lets sau

#

a 128x128 part of a 4k texture x10

#

just to change one tile

deep glen
#

<_<

median wraith
#

and load the whole texture lol

deep glen
#

my point was, why not just hueshift that one

median wraith
#

exactly

#

idk ask them XD

#

and if you zoom can easy spot the four tiles at top change the whole texture

#

you would rather make these individual

#

are x16 512 ones

deep glen
#

i have 2 or so packs from them, id only ever use their materials as placeholders

median wraith
#

they ones that gave for free ?

deep glen
#

cant remember, might have purchased em. is like years ago

median wraith
#

yeah this guys knows about make assets but have no idea about realtime things I bet

deep glen
#

more unity approach transfered to ue4

median wraith
#

I knew a team of guys making a VR game and they didn't know what tiling was, they were doing like this ones except they made the whole house floor a single texture and they were figuring out with it had bad resolution

#

despite the unity to ue4, the 1920 res textures wont ever do mip even at unity

deep glen
#

<_< seems whoever does the uploading/configuring of ue4's youtube channels's videos just pastes all the tags from a document

#

so the search function is useless

#

"using fmod" has the same tags as "advanced niagara effects"

median wraith
#

na fmod is for the audio

#

πŸ€ͺ

deep glen
#

duh, but searching for niagara on their yt page also shows fmod, ue5, chaos, community spotlights etc

median wraith
#

xD
is everywheree

#

since what version is niagara stable released ?

tidal ivy
deep glen
#

XD

tidal ivy
#

having 20 categories isn't useful if you have 40 videos, each of which is in 75% of the categories

deep glen
#

much audio

somber pasture
primal spoke
#

And the gameplay ability system implementation begins unreal

#

using GAS?

red pewter
red pewter
#

there is a lot of trivia and a few strange workarounds last time I used it

#

one example: abilities not letting you call them again because they are still active

primal spoke
#

doing multiplayer has been a gotcha at every turn.

#

my latest was trying to call the AI controller from the controlled pawn...NOPE!

red pewter
#

GAS will definitely get you a lot closer. it can predict things on the client like stats, cues etc

primal spoke
red pewter
#

I don't think it will completely replace all multiplayer issues but anything you can construe as a "gameplayability" can be predicted on the client etc

#

so, something like a door opening on other clients might not use a gameplayability

primal spoke
#

Yeah I'm looking for powerups and speed burst cooldowns, and invincibility cooldowns and stuff like that.

red pewter
#

that's exactly what it was made for

primal spoke
red pewter
#

also, it's not really fully BP exposed for setting it up

#

you will need to do a fair amount of C++ to setup but the abilities themselves can largely be BP driven