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

Just Released My Audio Editing Asset for Unity!

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

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

r/Unity3D

Basic Movement and Jumping Demo

https://i.redd.it/iyuzptvg01se1.gif



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

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

r/Unity3D

Can Anyone tell me why the timescale wont go back too normal on parry?
https://redd.it/1jo0kk8
@r_Unity3D

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

r/Unity3D

Simulating Lava Movement with Sine Waves in Unity! (Rope It 2)

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

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

r/Unity3D

Turn a sprite white?

I have a sprite for my sprite renderer, the color in the sprite renderer is set to white so it doesn’t alter anything, when I change the color my sprite goes toward that color.

So how do I make it white? I don’t want to make a white sprite and swap it every time because I will have to do it for so many frames and seems bad practice

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

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

r/Unity3D

I'm developing a realistic survival game set 2.4 million years ago. You play as Homo habilis or erectus, using primitive methods to craft, hunt big game, and protect your tribe. It's early in development, but I’m focused on creating a truly primal experience. Open to feedback!

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

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

r/Unity3D

Current render distance on my (minecraft clone) game is this good xd ? Going insane right now.

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

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

r/Unity3D

Why Unity doesn't have a primitive Trianglular Collider? There's so many use cases for it. it's implementation wouldn't be too different than a box collider. And no, MeshCollider isn't the solution as it's nowhere near as fast as primitive colliders are.
https://redd.it/1jnnvp8
@r_Unity3D

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

r/Unity3D

shadergraph imagemaps

Is there a way to highlight an area on an image in shadergraph without displaying the overlay. I want to use an overlay as the area to highlight (instead of just going through pixel by pixel highlighting) and then highlight the area. I know there is a simple way to do this using imagemaps in renpy but can it be done as easily in unity 2D?

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

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

r/Unity3D

(Inefficient) Cartoon Planet Shader

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

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

r/Unity3D

Hex Map 4.0.0: UI Toolkit
https://catlikecoding.com/unity/hex-map/4-0-0/

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

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

r/Unity3D

Dodge or die! No attacks, just pure evasion. Watch how insane it gets after a few levels!

Hey everyone! I’ve been working on a game called Glow Journey where you control an orb, navigating through an ever-changing world full of dangers and enemies. The catch? You can’t attack—it’s all about dodging!

At first, it’s a calm experience, but as you level up and gather upgrades, the chaos begins. The more you progress, the tougher the enemies get, and the harder it is to avoid them. It’s a constant balance of speed and strategy!

Here's a quick preview of the game in action:

https://i.redd.it/pvqwm8othpqe1.gif

Would love to hear what you think 👋

Wishlist it if you want: https://store.steampowered.com/app/3608390/Glow\_Journey/

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

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

r/Unity3D

my experience with game engines
https://redd.it/1jiytdi
@r_Unity3D

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

r/Unity3D

Perlin noise generation changing on movement

Hi everyone,

No idea if this is a stupid question or not but I'm having issues with perlin noise changing appearance in my tilemap. My perlin noise generation I'm using for my 2D game prototype keeps seemingly moving even while retaining the same shape of some sort, even in the Scene View. I also get these weird horizontal dashed lines in both views occasionally. (top left of both images) I did some log statements in my generation method to check if it is generating noise multiple times, but it seems to only be doing it once... my guess is that it's to do with the tilemaps and not the noise itself but I really don't know.


Am I doing something horribly wrong or is it just a simple thing I overlooked? If there is something else in my project someone needs to help fix I can attach it to this post. Any help is appreciated :D

Images:

original generation \(objects are for testing\)

changed generation \(on movement\)



Code:

using UnityEngine;
using UnityEngine.Tilemaps;

public class PerlinIslandGen : MonoBehaviour
{
Header("Tilemap Settings")
public Tilemap tilemap;
public Tilemap detailsTilemap;
public TileBase grassTile;
public TileBase waterTile;
public TileBase sandTile;
public TileBase snowTile;

Header("Map Settings")
public int mapWidth = 50;
public int mapHeight = 50;
public float noiseScale = 0.1f;
public float islandFalloffStrength = 2.5f;
public float waterThreshold = 0.3f;
public float sandThreshold = 0.5f;
public float grassThreshold = 0.6f;
public float snowThreshold = 0.8f;

Header("Seed Settings")
public int seed = 12345;

Header("Details")
public TileBase treeTile;
public TileBase snowyTreeTile;
public TileBase grassDetailTile;
public TileBase rockTile;

Header("Frequencies")
public float treeFrequency = 0.1f;
public float grassFrequency = 0.15f;
public float rockFrequency = 0.08f;

private float offsetX;
private float offsetY;
private Vector2 center;
private float maxDistance;

void Start()
{
GenerateIslandTerrain();
}

void GenerateIslandTerrain()
{
// Initialize random seed
Random.InitState(seed);

// Center of the island
center = new Vector2(mapWidth / 2f, mapHeight / 2f);
maxDistance = Vector2.Distance(Vector2.zero, center);

// Lock noise offset based on seed
offsetX = seed 0.1f;
offsetY = seed
0.1f;

// Loop through each tile and generate terrain
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
// Get noise and falloff value
float finalValue = GetFinalNoiseValue(x, y);

// Get the correct tile for the noise value
TileBase tileToPlace = GetTileForValue(finalValue);
tilemap.SetTile(new Vector3Int(x, y, 0), tileToPlace);

// Generate details based on the final noise value
GenerateTileDetails(finalValue, x, y);
}
}
}

// Get the final noise value adjusted by distance from center
float GetFinalNoiseValue(int x, int y)
{
// Corrected: No Mathf.Floor() to prevent quantization issues
float noiseValue = Mathf.PerlinNoise(
(x + offsetX) noiseScale,
(y + offsetY)
noiseScale
);

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

r/Unity3D

I'm making a game where you guess real eBay item prices – any cool APIs or platforms I should integrate?

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

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

r/Unity3D

We just launched our first game Space Sprouts (and are really nervous)!

On a sunny day about three years ago, we were sitting on a park bench in Berlin, spitballing random game ideas that we wanted to explore. Ideas that stuck with us and came back to us from time to time. One of them was fairly simple: What about a game where you are alone in space and you start talking to your plant?

https://preview.redd.it/v7llxz1gk1se1.jpg?width=1920&amp;format=pjpg&amp;auto=webp&amp;s=492a9fc5b9b7119d5e1ec403edc773a277b7e64c

This simple concept changed and transformed over time—as most game ideas do. Over time it grew into different forms; each of them could've been a proper game. From a narrative-driven comic game to a sci-fi survival sandbox (eat those hamburgers before you sleep, Oda!) to a unique blend of genres that we have today.

But there were other parts of the concept that remained steadfast: A short journey through space. A mysterious ship that you explore on your own terms. Systemic gameplay. Time as a key factor of your journey. The main character is Oda, a young person with a very firm turquoise bun.

A very early prototype of Space Sprouts

Fast forward to today: After two years of development and the help of so many people, our first game Space Sprouts just launched.

Over these two years it grew into a game that we love and deeply care for. A game that combines the vision and sensibilities of everyone who worked on it. A game with an expansive solar punk spaceship, with 100 achievements and a unique world to explore. And also with a black hole that you can throw stuff into. If you like.

https://preview.redd.it/m972dyebk1se1.jpg?width=2355&amp;format=pjpg&amp;auto=webp&amp;s=93a57e2adf76bbe85b10b12f47328609052eaeeb

We hope you have fun while you explore it for yourself. And if you do, make sure to leave us a review. We'd really appreciate that. Check out our Steam Page here!

Love, Peace & Video Games

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

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

r/Unity3D

How our chemistry-based AR game evolved from prototype to final release

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

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

r/Unity3D

I'm working on a tank game. I just made destructable trees.
https://redd.it/1jnymv0
@r_Unity3D

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

r/Unity3D

My Debug Panel Asset is NOW AVAILABLE on the Asset Store! A lot of effort has gone into it, so I hope it's useful for anyone.
https://redd.it/1jnzc85
@r_Unity3D

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

r/Unity3D

How do I achieve what I am trying to do?

I have already some exported png asset files and a base game apk. The files have no home for them as they are normally from a download from the server which is now shut down. I am trying to get the png files to load and run in asset studio to view the games characters but can't figure it out with my knowledge and googling ability. I figured the easiest way was to extract the apk, merge the asset folders and somehow load it into the asset studio. Other than trying to find an asset loaded apk of the game what else could I do, and where else should I post for help. The game is Hero Cantare with WEBTOON and I cannot find the character arts anywhere even with the way back machine as artist accounts have been taken down and bad file links on wiki and similar websites.

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

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

r/Unity3D

Struggling really hard with weapon attachment code. Please help!

This is probably a very noob question. I just started playing around with unity and I'm getting very frustrated at what is probably a very simple problem. But I've been struggling for about 8 hours.

I have a character thats picking up a weapon. And it works great while walking around. As long as I pick up the weapon from the left side. IE the weapon hilt is close to the player.

https://preview.redd.it/kuz5o655sxre1.png?width=243&amp;format=png&amp;auto=webp&amp;s=40ed3edf90016c72ddbb0b128609a1a35d3ba966

https://preview.redd.it/5mmdvwe8sxre1.png?width=258&amp;format=png&amp;auto=webp&amp;s=f17cf08bf5736a41a43bef8fdf52046ce1773da9

If I try to pick up the weapon from the right side then the character starts walking around with the weapon upside down in his hand like he's some kinda badass.

https://preview.redd.it/3hfqnrhisxre1.png?width=284&amp;format=png&amp;auto=webp&amp;s=389c6869bd60da5ef1b06cc059e77179fcf575de

https://preview.redd.it/77livyjwsxre1.png?width=219&amp;format=png&amp;auto=webp&amp;s=38394d9a1baea62a6a01d2469c231cef8ecee420

https://preview.redd.it/0yuptzlxsxre1.png?width=172&amp;format=png&amp;auto=webp&amp;s=6c4cf799735900b2d36335ac6529785877c878c0

I've tried playing around with flipping the x axis of the weapon or throwing a 180 rotation based on the orientation of the player but unity doesn't seem to like that as it only fixes the weapon in that direction and then it automatically flips when the player turns around.

unit.weapon.transform.localRotation = unit.dir == DIRECTION.RIGHT? Quaternion.Euler(0,0,0) : Quaternion.Euler(0,180,0); //rotate sprite to current direction of the unit

https://preview.redd.it/hmtgs33wtxre1.png?width=133&amp;format=png&amp;auto=webp&amp;s=2ac0dc4f84a42f5c912525f4c23ac9c8b2991017

https://preview.redd.it/zpoeyqqutxre1.png?width=172&amp;format=png&amp;auto=webp&amp;s=9ad54a4e37e375f8b646fcc4236cee7e75612e33

Does anyone know what the correct solution to something like this is?


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

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

r/Unity3D

2D Hostile Entities in Unity

Hello,

So I'm making a game where my character has to navigate through an environment whilst avoiding different types of enemies. What would be the best way to make it so that the enemies patrol a predefined path but when they detect the player within a certain range they follow them until either the player has reached beyond a certain range, or the player has been hit / caught by the entity?

Thanks!

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

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

r/Unity3D

laid off senior software engineer looking for collab

ill keep it short. comment or dm for more info, I want o create a memecoin project, an idle clicker game backed by meme coin where the user can rebate their time spent watching ads. fake memecoin projects go up to 300m, this wont be a fake project. we could be rich rich.

MVP proof of concept web app:

https://tanner253.github.io/ClickerDemo/

documentation:
https://github.com/Tanner253/ClickerDemo/tree/main

Im 25, self taught engineer, I can figure anything out in 2 weeksI need to make a friend who knows unity and would be motivated to try to make this game in order to retire young and live good. thanks and take care.

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

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

r/Unity3D

Diagetic UI in my game

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

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

r/Unity3D

We made a new trailer for our upcoming game BabushCats where you need to care for cats and fight their nightmares. What do you think? Demo link in comments :)
https://youtu.be/lVLLPukMT-o?si=aa8-jZFDrENV6XBP

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

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

r/Unity3D

i tried unity before but failed now wanna do it again but better

so i tried unity before but failed and then deleted it and moved on, a while ago i boght this course

https://preview.redd.it/kw5zfwxv2ure1.png?width=712&amp;format=png&amp;auto=webp&amp;s=6740ce66d5523c190bc8734fa88e8cd359d899ab

wanting to get back to unity but i just wasnt good enough? like yeah i know programming basics and all but i cant write literlly any complete code by my own even if its the simplest thing ever (keep in mind that i learned from youtube never tried this course) i just wanna ask what it takes to get to the point where i can write codes without following youtube tutorials all the time? and whats a good way to learn game prog? and is this course actully good?

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

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

r/Unity3D

So happy with my progress today! I've been playing around with a proper tentacle animation for weeks. I often overcomplicated it and tried to use IK at all costs. In the end, a linear rotation around the base did the trick. Any suggestions are welcome!

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

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

r/Unity3D

float distanceToCenter = Vector2.Distance(new Vector2(x, y), center);
float gradientFalloff = Mathf.Clamp01(1 - (distanceToCenter / maxDistance) islandFalloffStrength);

// Return the combined noise and falloff value
return noiseValue
gradientFalloff;
}

// Get the correct tile based on final noise value
TileBase GetTileForValue(float value)
{
if (value < waterThreshold)
{
return waterTile;
}
else if (value < sandThreshold)
{
return sandTile;
}
else if (value < grassThreshold)
{
return grassTile;
}
else
{
return snowTile;
}
}

// Generate details such as trees, grass, and rocks on a separate tilemap
void GenerateTileDetails(float finalValue, int x, int y)
{
TileBase tile = GetTileForValue(finalValue);
float randomFrequency = Random.Range(0f, 1f);
Vector3Int position = new Vector3Int(x, y, 0);

if (tile == grassTile)
{
if (randomFrequency <= grassFrequency)
{
detailsTilemap.SetTile(position, grassDetailTile);
}
else if (randomFrequency <= rockFrequency)
{
detailsTilemap.SetTile(position, rockTile);
}
else if (randomFrequency <= treeFrequency)
{
detailsTilemap.SetTile(position, treeTile);
}
}
else if (tile == sandTile)
{
if (randomFrequency <= rockFrequency / 2)
{
detailsTilemap.SetTile(position, rockTile);
}
}
else if (tile == snowTile)
{
if (randomFrequency <= rockFrequency)
{
detailsTilemap.SetTile(position, rockTile);
}
else if (randomFrequency <= treeFrequency)
{
detailsTilemap.SetTile(position, snowyTreeTile);
}
}
}
}


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

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

r/Unity3D

I am looking for someone that can implement my characters in my Unity project

I need some help with integrating my 2D custom character into my 2D Unity project. Right now, the game uses a default character from a Unity package, but I want to replace it with my own character that I currently have in Illustrator files.

The character that the user controls needs to be able to run walk and idle animation if possible. I also want to give two or three other characters idle animations in particular parts of the game if possible.

The issue is that the current character in the game is fully rigged and animated, through a unity controller and character from the unity store I believe. I was wondering if there’s a fast way to change this maybe reusing an existing rig and just swapping in my character’s body parts?

Well some experts here might know exactly how to tackle this in an efficient way and are willing to do it for some money. I am on a budget so don't expect much

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

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

r/Unity3D

PlayerPrefs Save & Load System in Unity
https://youtube.com/watch?v=GDwkiJc_UKQ

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

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