News about the Unity engine and project showcases from Reddit. Made possible with @reddit2telegram (@r_channels).
Inspired by our favorite adventure games of the 80s and 90s .. Packed with plenty of old-school cartoon animation .. Made with Unity. We just launched Elroy and the Aliens! Excited so much
https://redd.it/1jpuzkb
@r_Unity3D
I quit my indie game and started working 9 to 5 for a company, sharing my progress!
https://redd.it/1jppd3i
@r_Unity3D
Which collider shoud I use for a player sprite ?
Hello
How can I know which type of collider 2D is the best compared to the sprite of the gameobject ? I need to constantly changed the collider during different animations.
For example, this is my player sprite with the run animation, which collider shoud I use ?
https://i.redd.it/gjxtmfzx0gse1.gif
https://redd.it/1jprz98
@r_Unity3D
Cinematic trailer and new gameplay for my game where you play as a stolen nose👃🏼 Honest opinions needed!
https://redd.it/1jpmig8
@r_Unity3D
How the **** is anyone still starting new projects in Unity? Seriously. Clause 1.7.
https://redd.it/1jpkpkw
@r_Unity3D
It’s polite to wave at your buddy when you catch up to each other in co-op
https://redd.it/1jphezv
@r_Unity3D
Using 3D sprites in a 2D game
What's the best way to do this? I'm hoping to achieve a kind of crummy look to the game, so it doesn't have to achieve good results, but some ideas are useful. I have pretty good modeling and animation experience, as well as 2D art skills, but I've been thinking of doing a side scroller metroidvania with 3D sprites. Basic animations, just like dudes running around, but I want it in 3D. However, there's no point in using Unity 3D, since the game will be totally 2D. I guess I could just screenshot the posed model, and cut and paste it into a sprite sheet, but I don't really want to do that. Any other ideas?
https://redd.it/1jpflcw
@r_Unity3D
Parallax City Asset, See Down below!
https://redd.it/1jpae5e
@r_Unity3D
These things crack me up
https://redd.it/1jp67q7
@r_Unity3D
Random.NightThoughts();
https://redd.it/1jp264i
@r_Unity3D
My story of developing a grass shader
Hey all, it's been a while now that I've wanted to share my journey around making a grass creation tool for Unity. Finally, I found some time to sit down and do it :)
[Trailer For Version 2.0](https://reddit.com/link/1joz6vj/video/cog33dc968se1/player)
Years ago, I got pretty frustrated with how grass was done in many Unity games. In a flood of semi-informed Unity tutorials, most solutions would simply point to geometry shaders and call it a day.
For those who don't know: Geometry Shaders are a GPU feature from the late 2000 to create geometry on-the-fly while rendering. While convenient to create, they are very slow and have been considered legacy for a long time now. (Apple didn't even bother adding them to their Metal API). Practically anything you wanted to do with a Geometry Shader is better off by being replaced with a Compute Shader. I felt this performance hit first-hand while working on the experimental VR game Lucid Trips, back in 2017.
After seeing **yet** another tutorial on YouTube that endorsed Geometry Shaders as the go-to solution, I had enough and started my own shader.😤[ I showed it on Twitter,](https://x.com/schneckerstein/status/1339219301962829824) which got me some fame, but never realized a full asset release.
Fast-forward to 2024, I worked on [Misgiven](https://store.steampowered.com/app/2475620/) and the game needed a volumetric light shader. I wanted to make an experiment and decided to put it on the Unity Asset Store, this is basically how [Screen Space God Rays](https://assetstore.unity.com/packages/vfx/shaders/fullscreen-camera-effects/screen-space-god-rays-urp-2d-3d-vr-272250#reviews) came together. It had decent success, so I dusted up the old grass shader and gave it a general overhaul so I could put it out there as well.
I basically wanted it to tick these boxes:
* it should be really performant by using the "right" hardware feature for the job: Compute Shaders.
* it should be very customizable, both via Editor parameters and offering advanced users well-documented code they can alter themselves.
* it should be reasonably simple, both from the UI and the code side.
This is how [Tasty Grass Shader](https://assetstore.unity.com/packages/vfx/shaders/tasty-grass-shader-urp-hdrp-3d-vr-279246) came to be.
While it's mainly a grass and plants framework, it can be used for leaves or other "clutter" on the ground as well. At this point, it can be even seen as a glorified "triangle spammer". It comes with support for meshes and Unity Terrain, lots of tools for manual and automatic placement, many presets and of course: a fast shader. And the shader really IS very fast: my benchmarks showed it can do thousands of blades under one millisecond on a [modern mid-range GPU](https://github.com/SymmetryBreakStudio/TastyGrassShader/wiki/4.-Benchmarks).
Since its release in spring last year, I've added a bunch of new features that users asked for, like support for HDRP, texture support, slope cutoff, prefab support and a frame-time budgeting feature.
[The HDRP Version Of The Demo Scene](https://preview.redd.it/y5btgxt178se1.png?width=2560&format=png&auto=webp&s=11334169400bd6aa9556b8070d1aecb8045abd34)
At this point, I think the asset is in a pretty solid state, but I'd like to hear what more people think in order to know where to go from here. Any feedback would be really appreciated, for example:
* Would you use it in our project? Why or why not?
* What other features would you want from this tool?
In the hopes of getting more people getting to test it, I'm also giving away 5 keys for Tasty Grass, as well as 5 keys for our other asset Screen Space God Rays. Please let me know in the comments if you'd like a key (one per person, first come, first served).
Thanks for reading!
\-Julian from Symmetry Break
https://redd.it/1joz6vj
@r_Unity3D
2 Years of solo development, quit my job, low on savings. Is it flop or success? You decide.
https://redd.it/1joxapy
@r_Unity3D
Help
When moving my player character left or right, then immediately up, the follower character's animation looks down for a split second, then continues to look in the correct direction. Sometimes the follower gets stuck in the down animation.
Here's the code for the player:
```
using System.Collections;
using Unity.VisualScripting;
using UnityEngine;
public class PlayerMovement : MonoBehaviour
{
public float speed = 5f;
public LayerMask obstacleLayer;
// List of movePoints for each character
public Transform[] movePoints = new Transform[4];
public Transform[] delayedInputs = new Transform[4];
// Animator
public Animator animator;
void FixedUpdate()
{
transform.position = Vector3.MoveTowards(transform.position, movePoints[0].position, speed * Time.deltaTime);
if (Vector3.Distance(transform.position, movePoints[0].position) <= 0.05f)
{
if (Mathf.Abs(Input.GetAxisRaw("Horizontal")) == 1f)
{
animator.SetFloat("Horizontal", Input.GetAxisRaw("Horizontal"));
animator.SetFloat("Vertical", 0f);
animator.SetBool("Walking", true);
SetDelayedInputs();
delayedInputs[0].position = new Vector3(Input.GetAxisRaw("Horizontal"), 0f, 0f);
if (!Physics2D.OverlapCircle(movePoints[0].position + new Vector3(Input.GetAxisRaw("Horizontal"), 0f, 0f), 0.2f, obstacleLayer))
{
Reorder();
movePoints[0].position += new Vector3(Input.GetAxisRaw("Horizontal"), 0f, 0f);
}
}
else if (Mathf.Abs(Input.GetAxisRaw("Vertical")) == 1f)
{
animator.SetFloat("Horizontal", 0f);
animator.SetFloat("Vertical", Input.GetAxisRaw("Vertical"));
animator.SetBool("Walking", true);
SetDelayedInputs();
delayedInputs[0].position = new Vector3(0f, Input.GetAxisRaw("Vertical"), 0f);
if (!Physics2D.OverlapCircle(movePoints[0].position + new Vector3(0f, Input.GetAxisRaw("Vertical"), 0f), 0.2f, obstacleLayer))
{
Reorder();
movePoints[0].position += new Vector3(0f, Input.GetAxisRaw("Vertical"), 0f);
}
}
else
{
animator.SetBool("Walking", false);
}
}
}
private void Reorder()
{
// followerMovePoints
movePoints[3].transform.position = movePoints[2].position;
movePoints[2].transform.position = movePoints[1].position;
movePoints[1].transform.position = movePoints[0].position;
}
private void SetDelayedInputs()
{
delayedInputs[3].position = delayedInputs[2].position;
delayedInputs[2].position = delayedInputs[1].position;
delayedInputs[1].position = delayedInputs[0].position;
}
}
```
And here's the code for the follower:
```
using UnityEngine;
public class FollowerMovement : MonoBehaviour
{
public float speed = 5f;
public Transform follower;
public Transform followerMovePoint;
public Transform delayedInput;
public Animator animator;
void FixedUpdate()
{
transform.position = Vector3.MoveTowards(transform.position, followerMovePoint.position, speed * Time.deltaTime);
if (transform.position.x > followerMovePoint.position.x || transform.position.x < followerMovePoint.position.x)
{
animator.SetFloat("Vertical", 0f);
animator.SetFloat("Horizontal", delayedInput.position.x);
animator.SetBool("Walking", true);
}
else if (transform.position.y > followerMovePoint.position.y || transform.position.y < followerMovePoint.position.y)
{
animator.SetFloat("Horizontal", 0f);
animator.SetFloat("Vertical", delayedInput.position.y);
animator.SetBool("Walking", true);
}
else
animator.SetBool("Walking", false);
Inspired by our favorite adventure games of the 80s and 90s .. Packed with plenty of old-school cartoon animation .. Made with Unity. We just launched Elroy and the Aliens! Excited so much
https://redd.it/1jpvey1
@r_Unity3D
Don't understand the context for the new input action
Hello
I want to know when my button is pressed and when button is still pressed or not. So, I use context.started
and context.performed
.
But, when I try to click on my button, the 2 are called 2 times directly but stop after, even if I still pressed my button. So, I don't understand the difference between them and how can I know if my button is pressed or not and how know if my button is still pressed or not.
My code : https://pastecode.io/s/w5bzmfqj
My input map :
https://preview.redd.it/r2pr6awlbgse1.png?width=1430&format=png&auto=webp&s=9371e24a0a7eb8730bc153ec4aed1ee6647048be
https://redd.it/1jptgk7
@r_Unity3D
Your 3D game looks dull? Just throw some Post Process. It's very easy and free.
https://redd.it/1jppoa7
@r_Unity3D
This cloth physics bug will get me in trouble. Any fixes please?
https://redd.it/1jpk1wy
@r_Unity3D
Hey Reddit! I've implemented a new mini-map and expanded the vibrant reef landscape in my indie game, 'Sonorous'. Would love your feedback! 🐠
https://redd.it/1jpkkr5
@r_Unity3D
My crazy ambitious solo project. Large terrain, lot's of props, ton of code. Everything is working great! Unity really works well.
https://redd.it/1jph3vm
@r_Unity3D
how can I make a computer desktop simulation game???
I'm working on a concept for a game that's basically just using a computer to bonding with characters by texting them and playing mini-games with them and stuff. I have been looking for about an hour for the right engine to make this in, and I think Unity is a good option?? At the very least it has a lot more resources.
But I don't know how to make this type of thing at all. And I cannot find a SINGLE decent tutorial on how to make something like it??? So if anyone knows any guides or has any general input it'd be helpful. I find it important to note that I cannot afford (like, at all) to pay for any templates or tutorials.
For further context I am not much of a programmer at all, but I can learn fast and can easily hyperfocus on whatever project I suddenly gain interest in. This game also doesn't need to be THAT crazy mechanically. I don't need to be able to resize windows or drag files around. I just need the ability to open and close windows, simulate a Discord-like text interface where you can click dialogue options to gain relationship points, have a few simple mini-games for bonding with the characters, a window simulating a browser so you can see their social media, and a Gallery window for viewing unlocked CGs. I picture this game being quite simple in execution—I want to mostly worry about writing and art/UI.
Let me know if Unity isn't the right choice for this type of game. But I will say, I've been looking into it for a bit and I don't think much else can cut it in terms of capability and access to community resources. Thanks in advance.
https://redd.it/1jphmj9
@r_Unity3D
How do I make a health bar like in nodebuster?
I'm making a small Tower Defense game with simple shapes and really liked the health bars in the game nodebuster. It was also a game with simple shapes (just squares) and they all had a border while the insides of the square were the actual health bar. I've been trying to replicate this but I don't know how as I am still very inexperienced with Unity. Also, I have shapes besides just squares and I have no clue how I can make a health bar in a hexagon shape. I've thought of alternatively just making the shape insides more and more transparent depending on their %hp, but I'd still like to go with the bar if possible (and I still don't knw how to make borders).
https://redd.it/1jp7yb7
@r_Unity3D
Hinge Joint for 2D Flipper Game - Won't Work
Hi! I'm a new game design student, and I have an assignment to make a pinball game for one project.
I applied all the steps my teacher provided and I have one flipper, the left one that works properly without issue and is responding to my visual scripts.
The right one however isn't working and I'm wondering if I'm missing a step?
I'd appreciate any help. Thank you
Edit: Titles wrong sorry, Pinball Game
It keeps going up in the air and flipping around
It's supposed to go down, not go up and hit the wall
Before I started the game resting position \(I originally had the hinge joint on the right edge I moved it to the center out of frustration and trying anything I could think of\)
https://preview.redd.it/lok4gjw4zase1.png?width=399&format=png&auto=webp&s=b78ecda0a6dde954b4217472640055fe842a8f62
https://preview.redd.it/k5t334mhzase1.png?width=378&format=png&auto=webp&s=07fc364d8dd7bfebc5880c5caf6470541def97b7
https://redd.it/1jp9eon
@r_Unity3D
How do you learn unity
Hi guys i have been learning unity from youtube ... Just following tutorial according to my requirements.. Like i wanted to spawn my enemy so i search for youtube tutorial on how to spawn enemy in unity.. Or say i wanted to make my enemy follow and attack my game charecter then i search for youtube tutorial on how to make enemy follow your game charecter and implement it .. So like wise i learn unity..sometimes i kinda get lost.. How do you guys learn unity in making your games..like Do you guys read books on unity or book on game development stuff, or do you guy buy courses..i feel like going through books and following a course video going in sequence from beginning to end will consume a lot of time.. how do you guys learn
https://redd.it/1jp4ncf
@r_Unity3D
My NEW Asset UDebug Panel's DEMO is up! The ULTIMATE in-game debug panel for Unity.
https://redd.it/1jp3360
@r_Unity3D
All projects start somewhere! My game is launching next week, so I thought it'd be fun to compare the final product to the first prototype
https://redd.it/1jozjml
@r_Unity3D
}
}
```
Any help is appreciated :)
https://redd.it/1jox092
@r_Unity3D
I've made this Time Travel game in Unity, the most difficult part was handling some weird time travel mechanics in Unity, it looks very easy but it was extremely hard, anyways I would like your feedback how does the game look so far?
https://redd.it/1joswt9
@r_Unity3D