r_unity3d | Unsorted

Telegram-канал r_unity3d - r/Unity3D

156

News about the Unity engine and project showcases from Reddit. Made possible with @reddit2telegram (@r_channels).

Subscribe to a channel

r/Unity3D

Announce Trailer - Tokyo Wave Rush

https://redd.it/1s8psgd
@r_Unity3D

Читать полностью…

r/Unity3D

I created this self-balancing active ragdoll sytem for Unity, it's in queue for review at the Unity Asset Store 🤞. Though there is a long queue! it won't be out before two weeks.

https://redd.it/1s8gzar
@r_Unity3D

Читать полностью…

r/Unity3D

I built a 2.5D oil-painting render pipeline in Unity. (Like in Disco Elysium)

https://redd.it/1s80kj8
@r_Unity3D

Читать полностью…

r/Unity3D

MochiRP — Community Project

Remote • Volunteer / Unpaid (Paid opportunities after launch)

About MochiRP

MochiRP is a community-driven roleplay game project creating a fun and creative experience for players. We’re building a team of developers, artists, and designers to bring the game to life.

Open Roles

C# Coders / Developers

UI / UX Designers

Mascot & Character Artists

Other creative contributors

Responsibilities

Collaborate on development and design

Build and test game systems

Create UI and character/mascot assets

Share ideas to improve gameplay

Qualifications

Experience in your chosen role (coding, design, art)

Portfolio or examples of work (if possible)

Teamwork and communication skills

Passion for community projects

Compensation

Currently unpaid while in development

Paid roles may become available after launch

Apply

Message us with your role, experience, and portfolio links. Join the team and help make MochiRP a reality!

https://redd.it/1s83d43
@r_Unity3D

Читать полностью…

r/Unity3D

Which one would you click on Steam?
https://redd.it/1s81syr
@r_Unity3D

Читать полностью…

r/Unity3D

Asset creation

I make 2D assets, and obviously, it’s my desire to make them the best quality for game devs. A lot of the assets I create, I break up into parts and change to grayscale for modularity and recolor purposes. Say I’m making a tree asset, when separating the layers (top and trunk) would you prefer the image cropped all the way to pixel line or leave space so that the perfectly align with same canvas size? Hopefully this makes sense. I would really like feedback on this.

https://redd.it/1s7z41b
@r_Unity3D

Читать полностью…

r/Unity3D

Here's my version of a Griffin that I will add to my game. What do you think?
https://redd.it/1s7vjh3
@r_Unity3D

Читать полностью…

r/Unity3D

25 Unity UI Tips to Speed Up Your Work (and enjoy it a lot more in the process)
https://www.youtube.com/watch?v=2zt3ZGpgtfg

https://redd.it/1s7q797
@r_Unity3D

Читать полностью…

r/Unity3D

[DRIFT RIDE 2] my mobile racing game announcement trailer

https://redd.it/1s7o9zs
@r_Unity3D

Читать полностью…

r/Unity3D

Cloud Interaction Shader

https://redd.it/1s7kp3c
@r_Unity3D

Читать полностью…

r/Unity3D

Making a pixel racing game called Wangan Runner

https://redd.it/1s7a9sc
@r_Unity3D

Читать полностью…

r/Unity3D

Announcement Trailer for My Unity Game - Middle Management

https://redd.it/1s796lu
@r_Unity3D

Читать полностью…

r/Unity3D

Sessions change with shaders in the city, our game Silent Authority: Blood & Bourbon

https://redd.it/1s753si
@r_Unity3D

Читать полностью…

r/Unity3D

Latte art mechanic

https://redd.it/1s71o9d
@r_Unity3D

Читать полностью…

r/Unity3D

Trying to design a satisfying combo-based jump system — feedback appreciated
https://play.google.com/store/apps/details?id=com.ismailparlak.RiseUp

https://redd.it/1s6syqm
@r_Unity3D

Читать полностью…

r/Unity3D

I tried to make something different… does this make you want to know what the game is about?
https://redd.it/1s8mrr9
@r_Unity3D

Читать полностью…

r/Unity3D

Just some Retro shader

https://redd.it/1s895fs
@r_Unity3D

Читать полностью…

r/Unity3D

How to calculate a perfect card hand arc in Unity UI (that doesn't break when you change screen resolutions)

Man, Unity's Canvas scaling can be so frustrating sometimes.

I’ve been working on a card UI and quickly realized the standard HorizontalLayoutGroup doesn't do fans/arcs. So I wrote a quick script using Mathf.Cos and Sin to place the cards along a circle. It looked great in the editor... until I resized the game window and the whole radius completely broke because of the Canvas Scaler.

After way too much trial and error, I realized the trick is to do all the trigonometry in local space, and then let transform.TransformPoint() do the heavy lifting to convert it to world space. This forces the coordinates to perfectly respect the canvas scale, whether it's on a 4K monitor or mobile.

Here is the core logic in case anyone is dealing with the same headache:

float angleStep = totalArcAngle / (cardCount > 1 ? cardCount - 1 : 1);
float currentAngle = -totalArcAngle / 2;

for (int i = 0; i < cardCount; i++)
{
// 1. Trig on a local 2D plane
float radians = (currentAngle + 90) Mathf.Deg2Rad;
Vector3 localPos = new Vector3(
Mathf.Cos(radians)
arcRadius,
Mathf.Sin(radians) arcRadius,
0
) + pivotOffset;

// 2. The fix: Convert to World Space respecting the Canvas Scale
Vector3 worldPos = transform.TransformPoint(localPos);

card.position = worldPos;
card.rotation = transform.rotation
Quaternion.Euler(0, 0, currentAngle);

currentAngle += angleStep;
}

Hope this saves someone a few hours of debugging UI math!

https://redd.it/1s88u00
@r_Unity3D

Читать полностью…

r/Unity3D

Game's been out for 2 Months - Major Update #2 Just Released
https://redd.it/1s84dfz
@r_Unity3D

Читать полностью…

r/Unity3D

How do I learn Unity UI?



https://redd.it/1s7yyyw
@r_Unity3D

Читать полностью…

r/Unity3D

Feedback on my 2D tap-to-jump prototype
https://redd.it/1s7vlkn
@r_Unity3D

Читать полностью…

r/Unity3D

Je n'arrive pas à créer une tile map.

Je n'arrive pas non plus à déplacer le cadre près de l'inspecteur.

Les performance sont mauvaise car j'enregistrais d'habitude c'est plus acceptable.

Je suis sur Unity 6.4 sur chromebook (avec l'émulateur Linux intégrer aux chromebook).

https://redd.it/1s7umb1
@r_Unity3D

Читать полностью…

r/Unity3D

I just released this game to which I dedicated the last year. Would love to hear your feedbacks

https://redd.it/1s7px67
@r_Unity3D

Читать полностью…

r/Unity3D

Day 1 vs Day 25 Difference in my Gamedev, How is it?
https://youtube.com/shorts/yO54W5vu4_k

https://redd.it/1s7kdbn
@r_Unity3D

Читать полностью…

r/Unity3D

More Fluffy Grass ft. Pumpkins, Lavender, and a Hidden Frog

https://redd.it/1s7hlpn
@r_Unity3D

Читать полностью…

r/Unity3D

I’m a student trying to fund my School Exchange Trip. I put all my heart into these 9 monsters and tilesets to make it happen. What do you think? 👾✈️

https://redd.it/1s787bh
@r_Unity3D

Читать полностью…

r/Unity3D

Be careful with "job opportunities" that people post in these gamedev groups.

https://redd.it/1s6xtpu
@r_Unity3D

Читать полностью…

r/Unity3D

Messing around with a pixel perfect tentacle/limb system
https://redd.it/1s74mhq
@r_Unity3D

Читать полностью…

r/Unity3D

I need to get to work
https://redd.it/1s71okz
@r_Unity3D

Читать полностью…

r/Unity3D

Trying to design a satisfying combo-based jump system — feedback appreciated
https://play.google.com/store/apps/details?id=com.ismailparlak.RiseUp

https://redd.it/1s6syj0
@r_Unity3D

Читать полностью…
Subscribe to a channel