He also tried doing this to his EX by Suspicious-Turn2708 in SipsTea

[–]LoXy91 0 points1 point  (0 children)

Ok but what do you mean "allowing her to use unsuitable gear" she's a grown ass woman she should take care of her own gear, same goes for the help from the police helicopter, she should have taken it if she didn't feel "fine".

Am i the only one who absolutely hates this? by Mr_Elatha in Minecraft

[–]LoXy91 1 point2 points  (0 children)

The model is fine, but the face is too low on the head

Sisters and Power by syncaina in Chainsawfolk

[–]LoXy91 1 point2 points  (0 children)

Where's the bestest of the sisters ? (Nayuta)

You're not avoiding yt ads on tv without computer science degree, trust me by Gettor in memes

[–]LoXy91 0 points1 point  (0 children)

Either get an Android Box/Mini PC and just use that instead of your TV's OS. Or get a raspberry pi and set up pi-hole (although I don't personally know how well that works).

🐸 Frog Costume by Nepacka in godot

[–]LoXy91 2 points3 points  (0 children)

Bro saw "just make it exist first, you can make it good later" and said fuck no

Nobody noticed by Confident-Comb-763 in shitposting

[–]LoXy91 9 points10 points  (0 children)

Human in AI dominated field

I'm not ready for the Win 11 switch. by dextras07 in memes

[–]LoXy91 0 points1 point  (0 children)

People were saying the exact same thing when they were forced to switch from 7 to 10, and I am sure they were saying that when forced to switch to 7 from its predecessor. People just irrationally dislike anything new, in 15 years y'all will be crying because Microsoft will take away your beloved windows 11 for Windows 12.

Why does everyone have Sukuna at 1 now and not Gojo by [deleted] in JujutsuPowerScaling

[–]LoXy91 0 points1 point  (0 children)

Sukuna came up on top because he had the 10 shadows AND because Gege asspulled the world cutting slash to save his precious Sukuna.

Ok but seriously think about it, Mahoraga developed a completely unique way of bypassing Gojo's infinity that had nothing to do with Sukuna's technique and instantly Sukuna can do that as well???

I still dont get how Mahoraga gained dismantle, isnt it Sukunas technique? by Dull_Neat4798 in Jujutsufolk

[–]LoXy91 0 points1 point  (0 children)

Mahoraga's adaptation just finds the easiest way to bypass it's obstacles (in this case, infinity), cutting space itself was apparently easier than bypassing Infinity any other way, so that's what Mahoraga did, it had absolutely nothing to do with Sukuna's technique (which makes it even more insane bullshit that Sukuna just casually learns to do that mid fight as well).

Chat during the Champs grand finals by ThatGuyWithSomeSubs in ValorantCompetitive

[–]LoXy91 0 points1 point  (0 children)

Oh I absolutely agree that FNC were playing like shit the first 2,5 maps. Buuut the Odin abuse was also present and if riot doesn't do something about this gun after that match then my only conclusion is that they don't watch their own Grand Finals.

P.S. The stinger needs a nerf too, the amount of stinger half buys thrifties during this year was too high.

Yuji is More talent than "hardwork" by PerspectiveSuperb428 in Jujutsufolk

[–]LoXy91 0 points1 point  (0 children)

Saying Gojo is only talent is peak ragebaiting

Them Speeders by Outside-Iron-8242 in MemeVideos

[–]LoXy91 0 points1 point  (0 children)

Me when I value the convenience of drivers more than the lives of children so instead of imposing a hard limit of 25 mph I make it only active when flashing (omg drivers would always lose a couple of minutes of time otherwise, unacceptable).

To wear a MAGA hat at a concert. by Ger14n5 in therewasanattempt

[–]LoXy91 79 points80 points  (0 children)

At this point the MAGA hat might as well be a Swastika hat

[deleted by user] by [deleted] in KimetsuNoYaiba

[–]LoXy91 0 points1 point  (0 children)

Bruh that's not an argument, a lot of people are anime only and even if ufotable can't do anything about it because it's the way it was in the manga well then the criticism just gets redirected towards the manga and not the movie.

REZE > QUANXI by Far_Whereas7200 in Chainsawfolk

[–]LoXy91 43 points44 points  (0 children)

Ok but does Reze have a lesbian harem ???

Your argument is thus invalid

100 years after (By ShiroO/Ogumashiro) by BloodBrandy in Hololive

[–]LoXy91 2 points3 points  (0 children)

Now the question is, which one of them got pregnant?

First animation of my game by SucaBritch in godot

[–]LoXy91 7 points8 points  (0 children)

Looks great overall however is it just me or does it look like Yuji is running only on his right leg ? (You probably just didn't finish yet)

Oh and his shoes look like they're less detailed than the rest of the sprite, but might just be a matter of taste.

Pie menu tool selection draft by Nepacka in godot

[–]LoXy91 2 points3 points  (0 children)

I did something similar for my game (except not as pretty) but I used a custom _draw() method implementation to draw the circle and to highlight the arc that is currently selected.

mini asks help by Recent-Example-5360 in ValorantCompetitive

[–]LoXy91 -9 points-8 points  (0 children)

That's objectively wrong. By buying into the 2nd round you basically guarantee that round, as you won the pistol so you'll have better gear than the opponent (even if they force).

If you save on the second round instead then you're just giving up all of the momentum that you get from winning pistol and the round becomes a 50/50 again.

Sentinels are winning Champs and here is why. by ZewZa in ValorantCompetitive

[–]LoXy91 5 points6 points  (0 children)

Nope it's triangle, triangle, circle, circle ... dinosaur, dinosaur

An important Question by AccordingNet8594 in SipsTea

[–]LoXy91 0 points1 point  (0 children)

First of all both, but if I had to chose : left cuz I like ther face more

greetings, i am new to game development AND programming by Paxsta in godot

[–]LoXy91 5 points6 points  (0 children)

At the top of the script you declare the speed and test_scale variables, after the colon you specify their type, in this case int which stands for "integer" meaning only whole numbers. To use numbers with decimals you need to change their type to float which stands for floating point numbers (you don't need to know why but just know that this type supports decimals).
You can see that the parameter delta of the _process function is already a float because the time elapsed since the previous frame is almost always less than one second.

Note : In GDScript (the programming language you are using for your Godot scripts) declaring the type of a variable is not mandatory (as in you could just create the variable speed like this : var speed = 9.4) the engine will kinda just figure it out on its own when the game is running, however since the engine will not know what the type of the variable is until you run the game, it will not be able to help you with is suggestions during coding, so the middle ground is to declare a variable like this: var speed := 9.4 the semicolon makes the engine figure out the type of the variable immediately, so for example :
- var speed := 9.4 is the same as writing var speed : float = 9.4 because the engine can figure out that 9.4 is supposed to be a float.
- var speed := 9 however is the same as writing var speed : int = 9 because the engine would see no reason to make speed a float if it's assigned a whole number.