Just prototyping things...
I was making quick prototyping, and suddenly ...
https://youtu.be/vdz1QWdnGKU
https://redd.it/1gu7faa
@r_Unity3D
I was making quick prototyping, and suddenly ...
https://youtu.be/vdz1QWdnGKU
https://redd.it/1gu7faa
@r_Unity3D
YouTube
phonk meme
I was just quick prototyping, and suddenly...
Looking for game devs
Hey everyone, is there anyone here working on a game or an app? I'd love to be part of it! I can contribute to creating the app, especially on the visual side. I can handle various types of art, including .obj models, normal illustrations, and pixel art. I can even design UI and suggest new ideas to improve the game! I really want to be credited in a game project, but unfortunately, I don’t know programming languages—just web development 😔. PLEASEEE consider my offer—I PROMISEEE I’ll give my all and genuinely help make your game amazinggg🥺🥺🥺!
https://redd.it/1gu6x6y
@r_Unity3D
Hey everyone, is there anyone here working on a game or an app? I'd love to be part of it! I can contribute to creating the app, especially on the visual side. I can handle various types of art, including .obj models, normal illustrations, and pixel art. I can even design UI and suggest new ideas to improve the game! I really want to be credited in a game project, but unfortunately, I don’t know programming languages—just web development 😔. PLEASEEE consider my offer—I PROMISEEE I’ll give my all and genuinely help make your game amazinggg🥺🥺🥺!
https://redd.it/1gu6x6y
@r_Unity3D
Reddit
From the Unity2D community on Reddit
Explore this post and more from the Unity2D community
Unity2d Tilemap Jitter when camera moving
I'm using the latest unity urp version, I'm using a pixel perfect camera, only and ONLY my tilemap is stuttering while the camera is moving.
I've tried disabling pixel perfect, I've tried different camera movement noscripts, currently setting my camera position via:
No other sprites or the player are having this stutter, I am not using pixel snap.
This and another confirmed unity bug is driving me crazy.
https://i.redd.it/ywvvem2luo1e1.gif
https://redd.it/1gu96qz
@r_Unity3D
I'm using the latest unity urp version, I'm using a pixel perfect camera, only and ONLY my tilemap is stuttering while the camera is moving.
I've tried disabling pixel perfect, I've tried different camera movement noscripts, currently setting my camera position via:
transform.position = targetPosition; in LateUpdate() with the target being my player who is moving smoothly.No other sprites or the player are having this stutter, I am not using pixel snap.
This and another confirmed unity bug is driving me crazy.
https://i.redd.it/ywvvem2luo1e1.gif
https://redd.it/1gu96qz
@r_Unity3D
2d Skeletal animations, directly in Unity or other software?
I'm aware I can import a PSD, create the skeleton, add weights and animate all in Unity, but is that the best way? Do people use a different program to create the animations and then import those into Unity? What do you do?
https://redd.it/1gudkyo
@r_Unity3D
I'm aware I can import a PSD, create the skeleton, add weights and animate all in Unity, but is that the best way? Do people use a different program to create the animations and then import those into Unity? What do you do?
https://redd.it/1gudkyo
@r_Unity3D
Reddit
From the Unity2D community on Reddit
Explore this post and more from the Unity2D community
How do I call a function/run code/edit variables on a custom rule tile
I'm currently trying to implement crops into my game and I'm using custom rule tiles to do so.
The way I'm currently trying to do it is that, every time a new day starts/the in game clock reaches 24:00 and resets to 00:00, it calls a function in the noscript for the custom tile that decreases the "days until next stage" variable by 1, and when it reaches 0, it replaces it's self with what ever other tile is specified. But, when ever the next day starts, I an error:
"NullReferenceException: Object reference not set to an instance of an object dayCycle.tickTime () (at Assets/UI/dayCycle.cs:35)"
Is there a way to get this to work? Or maybe a better way of doing this I don't know of?
dayCycle:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class dayCycle : MonoBehaviour
{
Text clocktxt;
private float RawTime = 0.0F;
private float ClockHR = 0.0F;
private float ClockMN = 0.0F;
private int ClockSpeedMultiplier = 1;
void Start()
{
clocktxt = gameObject.GetComponent<Text>();
RawTime = 1425;
InvokeRepeating("tickTime", 1, 1.0f);
clocktxt.text = ClockHR.ToString("00") + ":" + ClockMN.ToString("00");
}
void tickTime()
{
RawTime += ClockSpeedMultiplier;
ClockHR = (int)RawTime / 60;
ClockMN = (int)RawTime - (int)ClockHR * 60;
if (RawTime >= 1440)
{
RawTime = 0;
cropTile.instance.DayTick();
}
clocktxt.text = ClockHR.ToString("00") + ":" + ClockMN.ToString("00");
}
}
cropTile:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Tilemaps;
[CreateAssetMenu(menuName = "Tiles/Crop Tile")]
public class cropTile : RuleTile
{
public static cropTile instance;
public item item;
public NextStageType nextStageType;
public cropTile nextStage;
public ruleTileWithData lastStage;
public int daysUntilNextStage = 1;
public Tilemap tilemap;
public Vector3Int targetCell;
void Awake()
{
instance = this;
}
public enum NextStageType
{
Grow,
Final
}
public void DayTick()
{
daysUntilNextStage--;
Debug.Log(daysUntilNextStage);
if (daysUntilNextStage <= 0)
{
if (nextStageType == NextStageType.Grow)
{
tilemap.SetTile(targetCell, nextStage);
}
if (nextStageType == NextStageType.Final)
{
tilemap.SetTile(targetCell, lastStage);
}
}
}
}
https://redd.it/1guf6zs
@r_Unity3D
I'm currently trying to implement crops into my game and I'm using custom rule tiles to do so.
The way I'm currently trying to do it is that, every time a new day starts/the in game clock reaches 24:00 and resets to 00:00, it calls a function in the noscript for the custom tile that decreases the "days until next stage" variable by 1, and when it reaches 0, it replaces it's self with what ever other tile is specified. But, when ever the next day starts, I an error:
"NullReferenceException: Object reference not set to an instance of an object dayCycle.tickTime () (at Assets/UI/dayCycle.cs:35)"
Is there a way to get this to work? Or maybe a better way of doing this I don't know of?
dayCycle:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class dayCycle : MonoBehaviour
{
Text clocktxt;
private float RawTime = 0.0F;
private float ClockHR = 0.0F;
private float ClockMN = 0.0F;
private int ClockSpeedMultiplier = 1;
void Start()
{
clocktxt = gameObject.GetComponent<Text>();
RawTime = 1425;
InvokeRepeating("tickTime", 1, 1.0f);
clocktxt.text = ClockHR.ToString("00") + ":" + ClockMN.ToString("00");
}
void tickTime()
{
RawTime += ClockSpeedMultiplier;
ClockHR = (int)RawTime / 60;
ClockMN = (int)RawTime - (int)ClockHR * 60;
if (RawTime >= 1440)
{
RawTime = 0;
cropTile.instance.DayTick();
}
clocktxt.text = ClockHR.ToString("00") + ":" + ClockMN.ToString("00");
}
}
cropTile:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Tilemaps;
[CreateAssetMenu(menuName = "Tiles/Crop Tile")]
public class cropTile : RuleTile
{
public static cropTile instance;
public item item;
public NextStageType nextStageType;
public cropTile nextStage;
public ruleTileWithData lastStage;
public int daysUntilNextStage = 1;
public Tilemap tilemap;
public Vector3Int targetCell;
void Awake()
{
instance = this;
}
public enum NextStageType
{
Grow,
Final
}
public void DayTick()
{
daysUntilNextStage--;
Debug.Log(daysUntilNextStage);
if (daysUntilNextStage <= 0)
{
if (nextStageType == NextStageType.Grow)
{
tilemap.SetTile(targetCell, nextStage);
}
if (nextStageType == NextStageType.Final)
{
tilemap.SetTile(targetCell, lastStage);
}
}
}
}
https://redd.it/1guf6zs
@r_Unity3D
Reddit
From the Unity2D community on Reddit
Explore this post and more from the Unity2D community
Media is too big
VIEW IN TELEGRAM
Some new footage of Mekkablood: Quarry Assault. Should I add more hair to Bill's arms?
https://redd.it/1guct56
@r_Unity3D
https://redd.it/1guct56
@r_Unity3D
2D Character movement along a Quadratic Bézier Curve
I'm trying to get a 2D character to move along a Quadratic Bézier Curve with variable starting velocity and acceleration, without directly modifying the character's Global/Local Position. So it should be done through their velocity.
help is really appreciated as I've been struggling with coding this for a month now, I've tried numerous methods that didn't end up working.
[Also I'm using Godot but this issue is very math/physics focused & I have used Unity before so I know it's terms, and I can say confidently that game engine doesn't really matter here so I'm just looking for any help I can get\]
https://redd.it/1gui0bz
@r_Unity3D
I'm trying to get a 2D character to move along a Quadratic Bézier Curve with variable starting velocity and acceleration, without directly modifying the character's Global/Local Position. So it should be done through their velocity.
help is really appreciated as I've been struggling with coding this for a month now, I've tried numerous methods that didn't end up working.
[Also I'm using Godot but this issue is very math/physics focused & I have used Unity before so I know it's terms, and I can say confidently that game engine doesn't really matter here so I'm just looking for any help I can get\]
https://redd.it/1gui0bz
@r_Unity3D
Reddit
From the Unity2D community on Reddit
Explore this post and more from the Unity2D community
Enemy AI with Events and Delegates in Unity: Dynamic Ramming Behavior
https://differ.blog/p/enemy-ai-with-events-and-delegates-in-unity-dynamic-ramming-behavior-ab8141
https://redd.it/1guj5jx
@r_Unity3D
https://differ.blog/p/enemy-ai-with-events-and-delegates-in-unity-dynamic-ramming-behavior-ab8141
https://redd.it/1guj5jx
@r_Unity3D
Differ
Enemy AI with Events and Delegates in Unity: Dynamic Ramming Behavior
Learn to implement C events, delegates, and modular AI for optimized gameplay in Unity
Day one of making my Dream Game: Today I installed unity and set my project!
https://redd.it/1gumnza
@r_Unity3D
https://redd.it/1gumnza
@r_Unity3D
Looking for Text/Menu Game Tutorial
I’m looking for a developer tutorial to make a text/menu style game such as OGame or King of Chaos.
Last time I was teaching myself I was working through a full RPG tutorial but it spent a lot of time on things like movement and level design that are outside the scope of my first game I want to build.
I was wondering if anyone could recommend a good tutorial that’s more focused on the style of game I want to start with.
For a bit more detail, I’m aiming for mobile/browser as the release platforms and for my 2nd game I’m hoping to integrate mini-games into something like the first game.
I’m very willing to shell out a bit of money for a good Udemy, Skillshare etc. course.
Any recommendations appreciated.
https://redd.it/1guo9di
@r_Unity3D
I’m looking for a developer tutorial to make a text/menu style game such as OGame or King of Chaos.
Last time I was teaching myself I was working through a full RPG tutorial but it spent a lot of time on things like movement and level design that are outside the scope of my first game I want to build.
I was wondering if anyone could recommend a good tutorial that’s more focused on the style of game I want to start with.
For a bit more detail, I’m aiming for mobile/browser as the release platforms and for my 2nd game I’m hoping to integrate mini-games into something like the first game.
I’m very willing to shell out a bit of money for a good Udemy, Skillshare etc. course.
Any recommendations appreciated.
https://redd.it/1guo9di
@r_Unity3D
Reddit
From the Unity2D community on Reddit
Explore this post and more from the Unity2D community
Pixel art avatars of game I'm working on
https://preview.redd.it/2sz04ga19s1e1.png?width=309&format=png&auto=webp&s=c90d7a6250140c90976ee3104cf16ea526df101c
https://preview.redd.it/72eg8cf89s1e1.png?width=313&format=png&auto=webp&s=5a81606e2e14d592c9f929a45bdd7f93cf53f8e9
https://preview.redd.it/oshcogee9s1e1.png?width=313&format=png&auto=webp&s=d317519d4a9a3bb2469873db7b82ec7a76334b0e
https://preview.redd.it/c65jze5h9s1e1.png?width=330&format=png&auto=webp&s=f3104554df542d31aff3edb5436cc7db719d8bff
https://preview.redd.it/8az47y4m9s1e1.png?width=332&format=png&auto=webp&s=ec8cf6f3a0e245762299e72097a18aa6aa13c37e
https://preview.redd.it/d70rz7yq9s1e1.png?width=308&format=png&auto=webp&s=7e73ee0ab106274a527bbf66525e03310e277bf9
https://preview.redd.it/ueyicezu9s1e1.png?width=313&format=png&auto=webp&s=c8846ff1e87d0526f50a310ced683f4ea0b52e29
https://preview.redd.it/bpkpi7x0as1e1.png?width=330&format=png&auto=webp&s=9f7befdbb6c2c0488da6466340e1af239fcbc40d
So, about 7 months ago I started developing a 2D rpg that is based off a DnD campaign I've been playing with my friends for about 2 years now. I wanted to share some of the art for the avatars for some of the PCs/NPCs/Monsters.
The best part about making a game based off a DnD campaign is that the plot has already written itself! It's been a lot of fun so far developing. I work on it every weekday and it's been coming along nicely.
Anyways, thanks for stopping by!
https://redd.it/1guopix
@r_Unity3D
https://preview.redd.it/2sz04ga19s1e1.png?width=309&format=png&auto=webp&s=c90d7a6250140c90976ee3104cf16ea526df101c
https://preview.redd.it/72eg8cf89s1e1.png?width=313&format=png&auto=webp&s=5a81606e2e14d592c9f929a45bdd7f93cf53f8e9
https://preview.redd.it/oshcogee9s1e1.png?width=313&format=png&auto=webp&s=d317519d4a9a3bb2469873db7b82ec7a76334b0e
https://preview.redd.it/c65jze5h9s1e1.png?width=330&format=png&auto=webp&s=f3104554df542d31aff3edb5436cc7db719d8bff
https://preview.redd.it/8az47y4m9s1e1.png?width=332&format=png&auto=webp&s=ec8cf6f3a0e245762299e72097a18aa6aa13c37e
https://preview.redd.it/d70rz7yq9s1e1.png?width=308&format=png&auto=webp&s=7e73ee0ab106274a527bbf66525e03310e277bf9
https://preview.redd.it/ueyicezu9s1e1.png?width=313&format=png&auto=webp&s=c8846ff1e87d0526f50a310ced683f4ea0b52e29
https://preview.redd.it/bpkpi7x0as1e1.png?width=330&format=png&auto=webp&s=9f7befdbb6c2c0488da6466340e1af239fcbc40d
So, about 7 months ago I started developing a 2D rpg that is based off a DnD campaign I've been playing with my friends for about 2 years now. I wanted to share some of the art for the avatars for some of the PCs/NPCs/Monsters.
The best part about making a game based off a DnD campaign is that the plot has already written itself! It's been a lot of fun so far developing. I work on it every weekday and it's been coming along nicely.
Anyways, thanks for stopping by!
https://redd.it/1guopix
@r_Unity3D
Is That Made By Particle System?
https://i.redd.it/wofejsr6xr1e1.gif
You see my gif and what happens when the user click any block, right? There are really small pieces spread.
I need to learn how to do that. I have used particle system before but the particles there were totally different. They were not moving like that. They were just spreading like they were in space. So, what is the way to do that?
https://redd.it/1gund8o
@r_Unity3D
https://i.redd.it/wofejsr6xr1e1.gif
You see my gif and what happens when the user click any block, right? There are really small pieces spread.
I need to learn how to do that. I have used particle system before but the particles there were totally different. They were not moving like that. They were just spreading like they were in space. So, what is the way to do that?
https://redd.it/1gund8o
@r_Unity3D
Media is too big
VIEW IN TELEGRAM
Prototyped a small isometric stealth game in comic book style with a 1930s setting :)
https://redd.it/1guiy1e
@r_Unity3D
https://redd.it/1guiy1e
@r_Unity3D
This media is not supported in your browser
VIEW IN TELEGRAM
Land of Symbiosis - 8 Months Dev Progression - Co-op Sci-fi Survival Game 👋
https://redd.it/1gusxvu
@r_Unity3D
https://redd.it/1gusxvu
@r_Unity3D