TheFloorIslawa
@slawadeisling.bsky.social
Co-Founder/Programmer/Game Designer at @behindthestone.bsky.social
Ex-Organizer @indietreff.bsky.social
Former Lecturer @uegermany
Tweets in 🇬🇧🇩🇪
He/Him.
Ex-Organizer @indietreff.bsky.social
Former Lecturer @uegermany
Tweets in 🇬🇧🇩🇪
He/Him.
Die BlueSky App auf dem iPhone
So sieht dein Post bei mir aus:
So sieht dein Post bei mir aus:
July 21, 2025 at 9:50 AM
Die BlueSky App auf dem iPhone
So sieht dein Post bei mir aus:
So sieht dein Post bei mir aus:
Substack banned porn bc it would ruin serious journalistic content apparently but racist views and Nazis wont.
Ooookaaa~~~y
Ooookaaa~~~y
June 8, 2025 at 3:08 PM
Substack banned porn bc it would ruin serious journalistic content apparently but racist views and Nazis wont.
Ooookaaa~~~y
Ooookaaa~~~y
The interesting part of this story is this part right here:
Like it's so funny how close he is to actually getting it but fails astonishingly. He recognizes that sharing "certain" human thoughts is a bad idea. Sadly this dude never stopped for a single moment and thought WHY those ideas are bad
Like it's so funny how close he is to actually getting it but fails astonishingly. He recognizes that sharing "certain" human thoughts is a bad idea. Sadly this dude never stopped for a single moment and thought WHY those ideas are bad
April 22, 2025 at 11:43 AM
The interesting part of this story is this part right here:
Like it's so funny how close he is to actually getting it but fails astonishingly. He recognizes that sharing "certain" human thoughts is a bad idea. Sadly this dude never stopped for a single moment and thought WHY those ideas are bad
Like it's so funny how close he is to actually getting it but fails astonishingly. He recognizes that sharing "certain" human thoughts is a bad idea. Sadly this dude never stopped for a single moment and thought WHY those ideas are bad
There are two wolves inside you?
Bullshit.
Everyone has a Super Mario and an Alan Wake inside!
Bullshit.
Everyone has a Super Mario and an Alan Wake inside!
March 7, 2025 at 6:55 PM
There are two wolves inside you?
Bullshit.
Everyone has a Super Mario and an Alan Wake inside!
Bullshit.
Everyone has a Super Mario and an Alan Wake inside!
Naja, immerhin das
February 23, 2025 at 7:55 PM
Naja, immerhin das
Every time a live service game gets announced
February 15, 2025 at 12:30 PM
Every time a live service game gets announced
Now that I finished playing Death Stranding I look forward to playing it’s prequel:
“Baby Steps”
“Baby Steps”
January 28, 2025 at 4:09 PM
Now that I finished playing Death Stranding I look forward to playing it’s prequel:
“Baby Steps”
“Baby Steps”
Had a blast with my Switch this year :D
December 27, 2024 at 12:14 PM
Had a blast with my Switch this year :D
Suddenly a bunch of people got up from their seats and positioned themselves in front of the screen and we were introduced to the badass "St. Johannis Altona" choir (we were allowed to take pictures!)
They performed (from what I can tell) parts of "Requiem in D minor"
They performed (from what I can tell) parts of "Requiem in D minor"
December 6, 2024 at 3:10 PM
Suddenly a bunch of people got up from their seats and positioned themselves in front of the screen and we were introduced to the badass "St. Johannis Altona" choir (we were allowed to take pictures!)
They performed (from what I can tell) parts of "Requiem in D minor"
They performed (from what I can tell) parts of "Requiem in D minor"
Ok, so yesterday I think I had probably the best cinema experience in my life. Went to see "Amadeus" in my favorite cinema and little did I know what would happen. I have seen this movie countless times and I was so hooked to see it properly on the big screen for the first time.
First surprise:
First surprise:
December 6, 2024 at 3:10 PM
Ok, so yesterday I think I had probably the best cinema experience in my life. Went to see "Amadeus" in my favorite cinema and little did I know what would happen. I have seen this movie countless times and I was so hooked to see it properly on the big screen for the first time.
First surprise:
First surprise:
What I do is having an editor script that caches the current scene I am in, loads my boot scene, creates the platformcontroller and inits the handlers (here by loading a dedicated gamemanagers scene) and then loads the previously cached scene:
November 20, 2024 at 10:38 AM
What I do is having an editor script that caches the current scene I am in, loads my boot scene, creates the platformcontroller and inits the handlers (here by loading a dedicated gamemanagers scene) and then loads the previously cached scene:
The great thing about this is that these handlers which inherit from my interfaces are plain c# classes, no need for MonoBehaviours. This way I can fully control the order of operations, which handler initializes, which updates first and gets disposed first and so on.
November 20, 2024 at 10:38 AM
The great thing about this is that these handlers which inherit from my interfaces are plain c# classes, no need for MonoBehaviours. This way I can fully control the order of operations, which handler initializes, which updates first and gets disposed first and so on.
This can look different depending on the way you want to architecture the design but what suited me quite well was having an abstract class with a bunch of interface-type fields, their implementations will handle relevant platformsystems like user handling or saving/loading etc.
November 20, 2024 at 10:38 AM
This can look different depending on the way you want to architecture the design but what suited me quite well was having an abstract class with a bunch of interface-type fields, their implementations will handle relevant platformsystems like user handling or saving/loading etc.
Super, danke fürs Teilen. Ich frage mich nur gerade was es mit diesen Panda-Accounts auf sich hat, ist das irgendeine Gruppierung/ein Symbol dass ich einfach nur nicht kenne?
November 7, 2024 at 6:17 PM
Super, danke fürs Teilen. Ich frage mich nur gerade was es mit diesen Panda-Accounts auf sich hat, ist das irgendeine Gruppierung/ein Symbol dass ich einfach nur nicht kenne?
Time for another little tip for Unity, this time some code: Generally you want to avoid using methods like GameObject.Find and whatnot bc of their poor performance.
In a recent version Unity added a more performant way to find objects by their type, so say bye to FindObjectOfType
#unitytips #gamedev
In a recent version Unity added a more performant way to find objects by their type, so say bye to FindObjectOfType
#unitytips #gamedev
November 1, 2024 at 12:36 PM
Time for another little tip for Unity, this time some code: Generally you want to avoid using methods like GameObject.Find and whatnot bc of their poor performance.
In a recent version Unity added a more performant way to find objects by their type, so say bye to FindObjectOfType
#unitytips #gamedev
In a recent version Unity added a more performant way to find objects by their type, so say bye to FindObjectOfType
#unitytips #gamedev
I think I want to try to start shouting out some Unity Editor or coding tips every friday, so here it goes.
Did you know that in Project Settings -> Editor
you can adjust how duplication (CMD+D/CTRL+D) of a GameObject or Prefab formats/increments the name?
Have a look 😀
#gamedev #unitytips
Did you know that in Project Settings -> Editor
you can adjust how duplication (CMD+D/CTRL+D) of a GameObject or Prefab formats/increments the name?
Have a look 😀
#gamedev #unitytips
October 25, 2024 at 2:14 PM
I think I want to try to start shouting out some Unity Editor or coding tips every friday, so here it goes.
Did you know that in Project Settings -> Editor
you can adjust how duplication (CMD+D/CTRL+D) of a GameObject or Prefab formats/increments the name?
Have a look 😀
#gamedev #unitytips
Did you know that in Project Settings -> Editor
you can adjust how duplication (CMD+D/CTRL+D) of a GameObject or Prefab formats/increments the name?
Have a look 😀
#gamedev #unitytips
Basically the same like flixbus, depending on the trip you get the option of a bus&train or only the bus :)
If there is no train available you’ll only be able to book a bus
If there is no train available you’ll only be able to book a bus
October 10, 2024 at 6:22 PM
Basically the same like flixbus, depending on the trip you get the option of a bus&train or only the bus :)
If there is no train available you’ll only be able to book a bus
If there is no train available you’ll only be able to book a bus
After a very brief mail exchange Kenney already fixed it, outstanding support 😭
June 26, 2024 at 1:55 PM
After a very brief mail exchange Kenney already fixed it, outstanding support 😭
@kenney.bsky.social I wanted to inform you that your PS4 Options button fail the submission process for Playstation bc the lower case "n" does not adhere to their hardware terminology. From what I understand it needs to be displayed uppercase "N"
That being said: thanks for all these input icons 😀
That being said: thanks for all these input icons 😀
June 26, 2024 at 12:33 PM
@kenney.bsky.social I wanted to inform you that your PS4 Options button fail the submission process for Playstation bc the lower case "n" does not adhere to their hardware terminology. From what I understand it needs to be displayed uppercase "N"
That being said: thanks for all these input icons 😀
That being said: thanks for all these input icons 😀
The duality of man
June 13, 2024 at 6:42 PM
The duality of man
My final stats after beating Ophion
16 hours, 25 Deaths
I think that’s solid.
16 hours, 25 Deaths
I think that’s solid.
February 20, 2024 at 10:48 PM
My final stats after beating Ophion
16 hours, 25 Deaths
I think that’s solid.
16 hours, 25 Deaths
I think that’s solid.
Day 8: Subject shows unusual behaviour, stopped eating food
Day 15: subject lost active control of motoric systems, body moves on its own, subject tries to communicate through screams
Day 27: whoever reads this…do not enter facility 17…
Day 15: subject lost active control of motoric systems, body moves on its own, subject tries to communicate through screams
Day 27: whoever reads this…do not enter facility 17…
January 30, 2024 at 7:55 AM
Day 8: Subject shows unusual behaviour, stopped eating food
Day 15: subject lost active control of motoric systems, body moves on its own, subject tries to communicate through screams
Day 27: whoever reads this…do not enter facility 17…
Day 15: subject lost active control of motoric systems, body moves on its own, subject tries to communicate through screams
Day 27: whoever reads this…do not enter facility 17…
GTA VI haben Oettinger Bier im Angebot
(Das finde ich megalustig weil ich gar keinen Alkohol trinke)
(Das finde ich megalustig weil ich gar keinen Alkohol trinke)
December 6, 2023 at 2:59 PM
GTA VI haben Oettinger Bier im Angebot
(Das finde ich megalustig weil ich gar keinen Alkohol trinke)
(Das finde ich megalustig weil ich gar keinen Alkohol trinke)
Is it bc of spooky season or did the icon change bc I havent used Duo for quite a while…
October 19, 2023 at 5:34 PM
Is it bc of spooky season or did the icon change bc I havent used Duo for quite a while…