#unity
(Adapted from Bond, p. 483.)
Suppose you have a Unity GameObject obj and want to set its x position to 5.
You'd like to say:
obj.transform.position.x = 5;
but this doesn't work!
The reason is that position is a property, so obj.transform.position returns a new Vector3, not the one stored in the transform.
You therefore have to do this:
pos = obj.transform.position;
pos.x = 5;
obj.transform.position = pos;
This bothers me because you can't tell by looking at something whether it's a field or a property. .position is accessing a property, but .x is accessing a field.
📂 #UnityTips: Keep your hierarchy organized by holding down alt key while expanding an object to expand all child objects. 🔎 #unity #unity3d #gamedev #indiedev
updated and published Easings, my curves library for Unity
Here's my newest avatar commission for a friend!
And yes, it's yet another bow!
#Furry #VRC #VRCHAT #VRChatAvatar #Unity #Blender #furryfandom #furryartist #kemono

O ye children of men!
The fundamental #purpose animating the Faith of God and His Religion is to safeguard the interests and promote the #unity of the human race, and to foster the spirit of love and fellowship amongst men. Suffer it not to become a source of dissension and discord, of hate and enmity.
This is the straight Path, the fixed and immovable foundation.
Tablets of Bahá’u’lláh
www.bahai.org/r/838594153
#bahai #quotes

💮#Allium #flowers, also called #ornamental #onions, are #perennial #plants with spherical #flower heads.
🌼They #bloom in late #spring to early #summer, displaying vibrant colors such as purple, pink, and yellow. Alliums prefer full #sun and well-drained soil.
🌸They are popular for #landscaping, attracting pollinators, and their resistance to #deer and rodents.
🌺Common varieties are Allium giganteum, #Purple Sensation, and Globemaster. These unique flowers symbolise #unity and good fortune.




UnityEngine.Random:
Uses nondeterministic properties (?!) instead of methods to return random values.
Does not follow Microsoft's convention for capitalizing property names.
Makes the upper bounds inclusive, unlike just about every other random library, because why the hell not.
Capitalization in C# / Unity is an infuriating minefield.
Microsoft and Unity offer slightly different standards and then don't consistently follow them.
There is no entry for "capitalization" in the index for the 1000-page C# 10 in a Nutshell. There is some advice under "identifiers", but it differs from what is given by the previous two sources.
Many sources want to capitalize private and public fields differently. Why would you do that?!
Unity adds spaces and changes the capitalization when displaying class and field names.
If you refactor a name, Unity bloats your code with a FormerlySerializedAs attribute.
Hi guys!! Finally after some weeks of optimizing the game I can finally show something :D
I'm optimizing the game, reworking the lighting system for make it look more realistic and also reworking the minimap as it was taking a lot of resources

Pausing your script during runtime just got easier in Unity! Use EditorApplication.isPaused = true; to pause the editor at any moment. ⌛ #UnityTricks #Unity #Unity3D #GameDevelopment #UnityTips #IndieDev
Good morning, everyone! ☀️ Just a friendly reminder that the #EU is not just about states and markets, it's about people too. You have millions of friends and allies in the EU who believe in #unity and #cooperation. Embrace your #European citizenship and have a fantastic day! 🌍 #GoodMorningEurope #PeoplesVote #RejoinEU #FBPE 27.05
Ubuntu 22.04 LTS, installed Unity (7.5) from Universe, how to switch to Unity 7.6? (if advisable) #unity #2204
Hey #Fediverse,
A friend is looking for undergraduate internship in software development/game dev (Canada/Remote preferably)
They have experience with Unity and C++ and won awards in a couple of game jams and personally really love the games they’ve built!
Would really appreciate any recommendations or help with connecting with teams that might be interested! Please boost to increase the reach and help them find a good internship 🥹
"Ukuhlangana kobuntu" is a #Zulu phrase that can be translated to #English as "the #comingtogether of #humanity" or "the #intersection of #humanity."
It signifies the idea of recognizing and embracing the shared humanity and interconnectedness of individuals, acknowledging the need for #solidarity and #unity in the pursuit of #equality and #justice.
This thing stamps well
A bit from the developer's kitchen
https://store.steampowered.com/app/1224030/Erra_Exordium/
#gamedev #indiedev #gaming #pixelart #gamedeveloper #gamedevelopment #madewithunity #unity #IndieDevs #indiedevhour #IndieGameDev #indiegame #indiegaming #leveldesign #gamedesign

Unlock new creative possibilities with Unity's Shader Graph! 🎨 #UnityTips #Unity #Unity3D #GameDev #IndieDev #GraphicsDesign Learn how: https://docs.unity3d.com/Packages/com.unity.shadergraph@16.0/manual/index.html
I also worked on a new spear that can damage multiple enemies around it when it explodes
#gamedev #indiegame #unity #videogames #gaming #coding #indiedev #blender #blender3d #games #art #design #particles #spear #animation #vfx #3dmodeling #gameplay #games #dev

Hay alguna forma de meter un editor de texto con posibilidad de poner títulos párrafos o imágenes en el inspector de #Unity? Se que puede que suene algo exagerado, pero es que lo necesito xDDDD
Delivering a big feature for merge review today (yay!)...but just discovered it doesn't compile at build time 😬 rushing through a bunch of packages wrapping editor-only code (with a snoring baby strapped to me). #FriYay #Programming #Unity #GameDev
I've just updated the documentation for the Unity Volume Rendering plugin: https://github.com/mlavik1/UnityVolumeRendering/blob/master/Documentation/Documentation.md

Nearly 20 years after #VirginGalactic got its start, the company has sent a crew to the edge of space for a final flight test - and the next flight will be Virgin Galactic's first mission with paying passengers. https://cosmiclog.com/2023/05/25/virgin-galactics-space-plane-aces-its-final-flight-test/ #Space #Unity #SpaceShipTwo

💡 #UnityTips: Use [DisallowMultipleComponent] to prevent a script from being attached to the same game object more than once. 🙅♀️Avoid conflicts and keep your project clean! #DisallowMultipleComponent #GameDev #IndieDev #Unity #Unity3D
Working through Jeremy Gibson Bond's excellent "Introduction to Game Design, Prototyping, and Development (Third Edition)".
Chapter 20, Variable and Components, gives a useful overview of Unity GameObjects and their components.
It also enumerates several of the bizarre gotchas in Unity, including:
The constants in the Color class (like Color.red) don't follow the usual capitalization convention for constants (SCREAMING_SNAKE_CASE).
"Mesh Colliders can only collide with other Mesh Colliders if both of them have Convex set to true."
"For the position of a Collider component to move with its GameObject, the GameObject must have a RigidBody. Otherwise ... the Collider will not move ...the GameObject will appear to move across the screen, but ... the location of the Collider component will not be updated, and therefore the physical presence of the GameObject will remain in the same location."
The Inspector changes the spacing and capitalization of class and variable names when it displays them, so (e.g.) damageState is displayed as Damage State.
This reminds me of heavy historical wargames that have all kinds of special rules like, "You can have up to three armor units in a city hex, except for hex 2334, which is limited to two armor units until the June 1943 turn (when, historically, the sewage plant exploded)."
#GameDev #unity #unity3d #wargames #inelegant #HistoricalReasons
💻 If you use a lot of non-changing strings in your code, you can use `static readonly string YourStringName = "YourString";` to avoid allocating a bit of memory each time. #UnityTips #Unity #Unity3D #IndieDev
This Unity to Godot importer has me a little excited https://www.gamingonlinux.com/2023/05/this-unity-to-godot-importer-has-me-a-little-excited/ #GodotEngine #Godot #Unity #GameDev #FOSS

Pues dejo por esta mañana el TFG, ya consigo coger los objetos de python, que son las escenas con todos sus GameObjects y con sus componentes de #Unity, y montar en un HTML un desplegable con esos datos. De momento solo muestra las carpetas pero las escenas y los gameObjects son mucha más sencillos ahora que ya tengo esto montado
The #RandyandManilla #Patreon page has already a 7-day free trial.
More than enough time to see at least all the exclusive advances that it offers to date.
Let's see on Patreon: https://www.patreon.com/ofihombre
#gaming #pcgaming #indiegames #indiedev #tier #Unity #trial #free

The #RandyandManilla #Patreon page has already a 7-day free trial.
More than enough time to see at least all the exclusive advances that it offers to date.
Let's see on Patreon: https://www.patreon.com/ofihombre
#gaming #pcgaming #indiegames #indiedev #tier #Unity #trial #free

Ça fait un moment que j'en ai pas fait, mais j'ai une soirée tranquille pour moi ce soir donc ça sera tutoriel Unity 😊
#Dodgers #walkback #decision to #uninvite #queer and #trans #nuns from #PrideNight
The #team was under fire for rescinding its #invitation to #SistersofPerpetualIndulgence. It had said the group might fracture the night's "#spirit of #unity."
Update a prefab in unity
All seems to work
Colleague test and it crashes
I test and same result as my colleague
I read the .unity of the scene, try to understand the problem
I don't know what I have done exactly, but with a kind of logic, I have repaired the scene
Prototyping a new typ of spear that can penetrate multiple enemies
#gamedev #indiegame #unity #videogames #gaming #coding #indiedev #blender #blender3d #games #art #design #particles #spear #animation #vfx #3dmodeling #gameplay #games #dev

#USA #republican leaders are becoming more and more scared that everyone is understanding their king is naked.
And they will try by any means to create noise, hoping nobody will speak about it.
Time to prove them wrong, time to show their support basis how real small they are, time to make those who back them financially regret the money they spend, time to take down the Media that passes their hate and fake messages.
VOTE BLUE; no matter your individual opinion, it is time for #Unity, voting #Dem in all elections is the only way.
MagicaClothがうごかねえーー!と思ってたら新版がでていた!
しかも旧版持ってる人は80% OFFだわ
💛 💙 #Ukraine #Hope #Unity #Strength #Вишиванка
"Today, embroidery has become a symbol of Ukrainian faith and strength, a symbol of an unconquered nation that has fought for freedom for centuries and now continues to fight for the right to a free, happy future."
Wonderful video celebrating the #Vyshyvanka – and its meaning for today:
Metatheory is hiring Senior Game Systems Engineer
🔧 #html #nft #csharp #javascript #python #typescript #unity #blockchain #web3 #css #seniorengineer
🌎 Remote; California, United States
⏰ Full-time
💰 $90k - $200k (Estimate)
🏢 Metatheory
Job details https://jobsfordevelopers.com/jobs/senior-game-systems-engineer-at-metatheory-mar-1-2022-04f262?utm_source=mastodon.world&ref=mastodon.world
#jobalert #jobsearch #hiring
I've had an incident open with #Unity #Unity3d since July regarding their broken-ass InputSystem. After dragging their feet on it for months, they finally "confirmed" it in December, after making me literally record a video of myself reproducing the bug, but they failed to actually open an issue for it. Since then, no one will respond any further on the incident or on the forums. This is beyond ridiculous.

I managed to eek out 5-25% faster performance in real-world use cases. how much of that is due to Rust itself vs optimizing the rust module much as I can, is unclear 😅 #rust #unity #performance
https://youtube.com/watch?v=D-xTQ0fFXi4&feature=share Jerusalema - the world’s anthem. Beautiful and insightful. #Unity #Walkwithme #Dontleavemehere #Jerusalema
21 May 1864
Theshxwe - Supreme Godhead
Zykhesh'ejyn - Awareness, Sh'en - Action, Lhyghecientche - No more bloodshed
Mamirnygh - Peace, Kholanygh - Empowerment, Pech'erach'ew - Perseverance
Xabze - Dharma, Xekw - Homeland
#SFW #Adyghe #Adiga #Adygea #Circassian #Cherkess #21May #12Tribes #Tha #sacredtree #TavCross #HammerCross #tamga #Mount #Elbrus #MtElbrus #Indigenous #Diaspora #Genocide #NoMoreWar #Peace #Defense #NoBloodshed #Freedom #Unity #Xabze #Pagan #Judaism #Christianity #Islam

It's my impression that no one is making fighting games with #GodotEngine and are using #Unity instead.
Any thoughts?
Totally missed this gem from a few days ago:
Unity manager publicly states company is 'out of touch', is fired within three hours
Hi guys!!
These days I'm working on optimizing my game and reworking some systems such as the lighting and the occlusion for make it run more smoother
For now I don't have anything to show, but stay tuned for upcoming progresses of the new region
A little beach level concept I've been working on
#gamedev #indiegame #unity #videogames #gaming #coding #indiedev #blender #blender3d #games #art #design #particles #spear #animation #vfx #3dmodeling #gameplay #sand #prototype #jump #beach #sun #tropical #game #screenshotsaturday

📽️ Presenting a video showcasing 8 diverse coffin designs from our "Forgotten Graveyards" #LowPoly #AssetPack. These are just a few of the 360 coffin-related models! 🪦🌟 #WIP
YT link if embedded video doesn't play: https://www.youtube.com/watch?v=5a11KotASyQ
#IndieDev #GameAsset #Unity #GameArt #Blender3D #b3d #Unity3D #URP #MadeWithUnity #ScreenshotSaturday







This week I tried rewriting some Bursted code in Rust for my Unity L-system project, ended up with about 1% perf improvement (including the cost of extern fn calls). This is my first time using Rust so I wonder if I'm missing some obvious performance gains, or if Burst is really just as good 🤔 #rust #unity #performance
Unleash the full potential of Unity's DOTS NetCode for online multiplayer games! 💥 Learn how: https://docs.unity3d.com/Packages/com.unity.netcode@1.0/manual/index.html #UnityDOTS #GameDev #IndieDev #UnityTips #Unity #Unity3D #Dots 🕹️
Trying out the pillars from earlier in the game, the way of making them works pretty good
#gamedev #indiegame #unity #videogames #gaming #coding #indiedev #blender #blender3d #games #art #design #particles #spear #animation #vfx #3dmodeling #gameplay #green #prototype #jump #forest


We were making a game with #Godot for a while... and it was going really well. I loved working with it and I recommend it for anyone making a small game, especially if they don't care as much about consoles.
Having said all that... I was finally convinced to move over to #Unity. The main justifications:
1. Framework availability. We're using Adventure Creator and Dialog System and it feels like cheating.
2. Easy console support.
3. Unity no longer takes a cut of the revenue.
The third reason totally shocked me. I've been anti-unity mainly for their greedy business practices. Now I'm only frustrated because their partnerships with evil companies... but I'm pragmatic. I actually feel like making games is possible now.
For the record, #Unreal is still my favorite engine, but not for 2D stuff. Now if you'll excuse me, I have to talk to this cube (tutorials forever...) #indiegamedev #indiedev
Heads up: we have an "unbranded" #WorldwideFreedomRally (#WWFR) happening May 20th at Noon local time under the guise of "#Unity".
As usual with this crew, it's all very conspiracist oriented, very anti-globalism, very anti-WHO, & very anti-"elites"... (Translation: very antisemitic & weird).
Expect small crowds of #QAnon-types to be out in locations such as: Ottawa, Keene, Toronto, Brantford, Barrie, Windsor, Bayfield, Penetang, Elliot Lake, Calgary, Terrace, Prince George, Regina, Gimli, Charlottetown, Moncton, & others.
I'm just posting this to give a heads up for anyone out at noon on Saturday in case you come across some group of ppl raving on about #Globalists, 5G, the "elites", and using slogans around "unity" and "we are ready" - that's going to be them.
As per their website:
"the #BilderbergClub is meeting in Lisbon, and the W.H.O. is also having a meeting at a different location. These two organizations are linked to globalism, agenda 2030, and the push for a one-world government."
I wouldn't give them any of your long weekend time (if in Canada), just my 2 cents.
Bet u can't beat 24.120s lap. post your screenshots 🏎️ 🏁
Bonus points if you can get Imphenzia on Masto 🤩 🍿
:pikawave: I'm working on a new project called Wizard of Nan. This game is inspired by the feedback I got from my previous project, MDAS Tactics.
Blog post: https://briantria.com/wizard-of-nan-devlog-1/
#gamedev #indiedev #indiegame #mathgame #educationalgame
#math #towerdefense #unity
Hello! I'm a soon-to-be former program manager with a large technology company in the Puget Sound region and I am looking for opportunities for remote work or hybrid options in the Seattle region. I'm new to the fediverse, but have a connection to a strong presence here. Trying out the #fediHired tag was recommended so I'm grateful for you reading this and boosting if possible. I'm learning and thank you!
My qualifications:
1. Native fluency in #Japanese and #English
2. Program Management experience 2+ years with large tech company
3. Excellent commendations and awards from previous management at current employer
4. Strong work ethic
5. Excellent organizational skills
6. Very comfortable around technology and learning new skills
7. Enjoy gaming and VR technologies
8. Very comfortable with all office and related programs.
9. Some familiarity with coding and game-related technologies like #Unity and #Blender.
#programManagement #fediHired #bilingual #strongWorkEthic #jobs #gettingHired #fediverse #cv #resume #jobSeeking #introduction
Some of my interests as hashtags:
#gaming #streaming #twitch #vr #beatSaber #japanese #日本語
If you do #game #development and use #JetBrainsRider, #Unity, or #Unreal then you might be interested in attending the #JetBrains free virtual conference.
Last year we had a pair of folks do their whole presentation as a video game. It was bonkers!
https://blog.jetbrains.com/dotnet/2023/05/15/jetbrains-gamedev-day-2023-call-for-speakers/
@GameFromScratch It really depends on the genre...
#Unreal definitely shines in #3D and #FPS and can provide a lot of options but isn't as accessible to get started than say #Unity...
But there may be several good reasons to choose it over say #GodotEngine - like native support for all current-gen #consoles only pending a developer agreement with the platform owner...
Can you hear the bells
Their lovely tone shaping thoughts
Clanging and clashing
#575prompt -ringing
It’s hard to miss the Unity Bell Tower rising 165 feet above the campus of Unity Village. Built in 1929, it stands guard over one of Kansas City’s most iconic hidden gems, offering a unique experience for visitors.
Click to see more➡️ https://3-pamela-williams.pixels.com/featured/unity-tower-2-pamela-williams.html
#unity #belltower #architecture #kansascity #SharePamsArt #AYearforArt #potd #photography #haiku #WritingCommunnity #poetry
@pidgeon_pete #ink is a scripting language developed by @inklestudios for the creation of branching narratives - either in text-based games or more graphical ones that use dialog trees/etc.
You can use it with many engines, like #unity or #godotengine but you'll need an interpreter to fit them together.
I've been writing and sharing thoughts for a while about how we can realise who we are, and who each other are, in order to transform the way we think about ourselves, our communities, our societies, our cultures. Our futures.
Every ideal that I have been writing about finds its practical realisation in this film.
#hope #joy #humanity #society #future #love #sociology #community #philosophy #unity #friends #world #solutions #positivity #goodnews #oneness #life #bahai
After Ludum Dare apparently itch had more games made in Godot than Unity for the first time ever
Wanted to re-share out @johnaustin's great post on how they made URP play nice with moving tonemapping and grading off to the forward renderer, since it's a great starting point for actually digging into SRP.
https://johnaustin.io/articles/2022/fast-post-processing-on-the-oculus-quest
Wow, it's been a while! In less than an hour at 5pm ET / 2pm PT, I'll be chatting with gamedevs Abhi of Venba, Marina Ayano Kittaka of Sephonie, Natalie Tin Yin Gan & @remysiu of 1000xResist!
We'll have a profound talk on how our respective games and characters explore cultural memory, hope, and trauma.
You can watch the panel here, as part of Fellow Traveller's #LudoNarraCon !
👉 https://store.steampowered.com/news/group/33025617/view/3710443172337395345?l=english
#indiegame #immigration #gamedev #writing #gamewriting #visualnovel #3Dplatformer #mystery #narrative #narrativegames #adventuregames #cyberpunk #puzzlegame #romance #unity #diversity #dystopia #art #gameart #gamedesign #xbox #steam
Oh, John...
Unity cuts 8 percent of its workforce in latest round of layoffs | Engadget https://www.engadget.com/unity-cuts-8-percent-of-its-workforce-in-latest-round-of-layoffs-164057911.html?src=rss

It's been a good couple of years since I tried to use #Unity for anything time-sensitive. But my experience with the #LDJam this weekend really brought home how slow the more recent versions are. It was absolutely infuriating and wasted a lot of time.
So! I'm not abandoning Unity but I think it's time to branch out and start learning other tools.
The obvious direction seems to be #Godot, but are there other engines I should be looking into?
For reference I like to make both 2d and 3d games, usually more management-style things than combat or action heavy. Not a massive fan of C# so if you'd recommend something that uses another language (I know that's the case with Godot) that's totally fine 😅
Opinions appreciated!
How are people making #games nowadays? Is there a particular framework/language that’s popular? Is everyone just using #UnrealEngine or #Unity?
Starting the long process of moving a prototype from #pico8 to #Unity😤
A sane person might begin by porting all the mechanics as soon as possible.
Me? I'm more concerned with making it fun to click the board😅
I might be the only person who works on strategy games as if they were platformers - by figuring out the "movement" first.
It's very important for me to get that right. I find it hard to assess a game if that kinetic feel of playing is completely missing.
While I was mourning how more or less unmaintained ProBuilder+ProGrids had become in Unity, I came across realtime-csg and I can't believe I hadn't heard of it prior.
It's full on RealTime CSG, as the name implies. The brushes are stored hierarchically as child objects of the model, and generates a non-fucky mesh as the last step. I'm dimly aware there's a successor somewhat in the works, but on 2019.4.3 it just works and is a great time.
Pixel Shader 2.0 is done, so glad too! there are a ton of nice features built in for everyone. Retro or new wave!
Features.
Dither dropoff
Custom dither patters and scale
Emission maps
Emission color
Main Light Shadow toggle
Screen Space toggle
VGA style posterized mode
light color count slider (for setting the number of colors a light and its mixing or dropoff will generate)
#pixelart #3D #animation #lowpoly #gaming #gamedev #retro #art #artist #programming #mastoart #pribambase #3dart #unity
I'm still upset at how Unity absorbed ProBuilder and ProGrids and then proceeded to more or less abandon ProBuilder and insist that their single dimension grid snapping toggle was equivalent to ProGrids before ditching it, leaving it under preview forever.
If you're not gonna make that shit first class citizens in your piece of shit 50 components to do the same thing none of which are compatible laden UX, why buy it at all?
Pixel art shader for Unity URP is nearly done. This time I am doing it all in ShaderGraph so I'm not totally lost at what's going on each stage of the pipeline.
My biggest hurdle (and last) is getting shadow casting to work for Unlit... I am at a total loss at the moment.
.
#pixelart #3D #animation #lowpoly #gaming #gamedev #retro #art #artist #programming #fanart #mastoart #pribambase #3dart #unity
#LesbianVisibilityWeek 2023 is delivering a powerful #trans-#inclusive #message
In a powerful display of #unity with #trans and #nonbinary people, organisers state on the website: “#Lesbian #Visibility Week aims to show our #solidarity with all LGBTQI #woman and #nonbinary people in the community, as well as celebrate (cisgender) lesbians.
#Women #Lesbians #Nonbinary #Transgender #LGBTQIA https://www.thepinknews.com/2023/04/24/lesbian-visibility-week-2023-date-events-history/
I've gone live!
Elite Dangerous: Odyssey
#VR #VRChat #Unity #VideoGames #Music #Blender
https://live.kd0bpv.nameThe prototype version of the dash energy powerup that launches the player
#gamedev #indiegame #unity #videogames #gaming #coding #indiedev #blender #blender3d #games #art #design #particles #spear #animation #vfx #3dmodeling #gameplay #dash #prototype #jump #screenshotsaturday
Coding question: my Ms14 wants to learn to code for gaming. She feels that the learning process through tools like Unity and Swift Playgrounds doesn’t feel like it’s teaching her to “write code”, which is what she wants to focus on. I don’t know where to point her for that kind of raw language learning, and I’m struggling to grasp why she’s not keen on friendly graphical tools. Any advice? #learntocode #code #swift #unity #gamedev
Google Play #developer page is up, just waiting for them to review the closed testing of my little game. Still got a few things to clean up with it but it’s my first time doing this so I’m just having fun learning! #unity #dev #gamedev
Fresh Game Development Tooling Tutorials 🎮
🕹️ Learn how to use Rider with #Unity and #UnrealEngine
🦄 Explore RiderFlow to design and manage scenes
@maltzen Oh, and one nice thing. I did (eventually) get both Sign in with Apple and Sign in with Google working in #Unity
Sign in with #Apple
https://github.com/lupidan/apple-signin-unity
Sign in with #Google
https://github.com/hippogamesunity/SimpleGoogleSignIn/wiki
Both are working when I run the project via My Mac (Designed for iPad) locally via XCode with #Unity set to the Device SDK.
All I want to do is build a mobile app with support for:
1. Sign in with #Apple (iOS only)
2. Sign in with #Google (iOS & Android)
3. In-app subscription purchase on iOS/Android
You would never believe how unbelievably hard it is to get these basic features working. Absolutely mad.
Example: #Unity docs for getting Sign in with Google working. The key functionality from Google Play Games? The GitHub repo notes that iOS is deprecated/"not likely to function"
https://forum.unity.com/threads/tutorial-authentication-with-google-play-games.1409151/
WTF.
There was never a better time to switch to Godot than now! :godot: 🚀
https://news.itsfoss.com/godot-4-0-release/
#GodotEngine #Godot4 #GameDev #Unity #Unity3D #Unreal #UnrealEngine #OpenSource
My book C# Game Programming Cookbook for Unity (2nd Ed) is available from all good (and bad) bookstores. It's mega expensive though, so I won't be surprised if you pirate it. If you do pirate it, maybe buy one of my games as a gesture so that I can at least make something for writing it? I get a fraction of the money if you buy it in a bookshop anyway, so it's not like I'm missing out massively anyhoo. Oh, and *sales mode* it's quite a good book actually. https://www.amazon.ca/Game-Programming-Cookbook-Unity-3D/dp/0367321645/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=&sr= #Unity #GameDev
@Richard_Littler @actuallyautistic
Most human traits are shared across the board, whether you have #autism or not. These traits are also combined with so many variables that there's no way to uphold *any* sort of claim that "group x is _____". That's textbook bigotry & #prejudice.
When we get off the beaten path, we still find this kind of #symmetry. For every above average person there's a below average one. This is regardless of being #autistic or any other category.
Also, there is no single 'box'. There's one for every context, and most of the time, by definition, the box represents a successful strategy already adopted. The time to go outside these norms is when a new problem arises, or the standard way no longer works. It is not a constant.
If increased acceptance of #diversity is the goal, let's not go about it by hammering wedges between people by claiming to be superior to others, or to be uniquely suffering in this absurd world.
It's true that we can speak of increased likeliness for certain things (including many bad ones you did not mention), given the small % of people in the autistic basket, but that will always be countered by the sheer numbers of human beings near the middle of the bell curve-- literally billions-- who are *not* being individually accommodated by anyone.
#Kindness #MentalHealth #Acceptance #Unity #Neurodiversity #Balance
IT-Umstellung: Erneut Einschränkungen für Postbankkunden
Die Deutsche Bank und die Postbank setzen ihre IT-Umstellung "Unity" fort. Dabei können für einige Kunden Einschränkungen auftreten.
Work continues on my a game I’m making! I don’t want to post anything specific about it just yet but a friend of mine gave me the idea and it sounded simple and fun as a free quick pick up and put down kind of mobile phone game. I’ve made and verified an Android Developer account and Unity Dev account and hopefully I should officially have a game out on the Google Play Store by the end of next month.
I made a Youtube video on Unity's new ai claims:
A little thing I am going to sing about a bit, and it is the tutorial but it has been one thing that has grabbed me.
I have compiled my first game on #Unity 😊
Unity just announced they are adding AI tools to the engine. birdsite link: https://twitter.com/unitygames/status/1638510865069531138 #gamedev #unity #ai
Proof of concept of integrating ChatGPT into Unity made by Keijiro Takahashi. source code => https://github.com/keijiro/AICommand #gamedev #unity #AI