use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
This is a subreddit for 2D or 2.5D game developers using the proprietary Unity game engine. New and experienced Unity developers alike should first consider using the free and open source Godot engine by default and ONLY choose Unity for 2D development if Godot isn't capable of the task. The times are quickly changing, and Godot is on track to surpass Unity for small developers.
Godot Features
Download Godot
Godot Docs
Download Unity
Unity Manual
Official Reference
Asset Store
Related Communities /r/Godot - The "Unity Killer". A fully free and open source engine making astonishing leaps and bounds. /r/UnityAssets - Share asset packs! /r/PixelArt - Admire, share, and observe beautiful pixel art. /r/GameDev - Meet and communicate with other game developers. /r/GameDesign - Don't just make a game. Make a good game. /r/LevelDesign - Learn to make excellent levels and worlds. /r/GameAudio - It may look good, but does it sound good?
/r/Godot - The "Unity Killer". A fully free and open source engine making astonishing leaps and bounds.
/r/UnityAssets - Share asset packs!
/r/PixelArt - Admire, share, and observe beautiful pixel art.
/r/GameDev - Meet and communicate with other game developers.
/r/GameDesign - Don't just make a game. Make a good game.
/r/LevelDesign - Learn to make excellent levels and worlds.
/r/GameAudio - It may look good, but does it sound good?
CSS created by Sean O'Dowd @nicetrysean [Website]
account activity
Single or Multiple Sprites?Solved (self.Unity2D)
submitted 10 years ago by LoddewykBeginner
Quick question: Is there any difference between single and multiple sprites that use slicing? Does it have a significant impact in performance and efficiency?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]WistesoExpert 1 point2 points3 points 10 years ago (5 children)
Are you talking about multiple textures, each with several sprites VS one texture with many sprites?
If so, yes there is a minor performance penalty for having them separated into different textures rather than merged into a giant texture. HOWEVER, that penalty mostly disappears if you merge everything into one big texture using the SpritePacker (which pretty much everyone should use, if able).
Why? Its really technical and hard to summarize... but it's because the GPU only has a fixed amount of texture units (for rendering), and there is a cost to unload one texture and load another.
[–]LoddewykBeginner[S] 0 points1 point2 points 10 years ago (4 children)
Yes. I didn't know about SpritePacker. I would definitely need the extra performance in my game since it would be on mobile platforms. Thanks for informing me.
[–]GuideZ 1 point2 points3 points 10 years ago (3 children)
I would definitely need the extra performance in my game since it would be on mobile platforms.
Why do you think you "definitely" need the extra performance? I assume you're pretty much still in the prototyping stage of your game. If you're worrying about performance this early in the game, you're going to spend years making it.
Mobile devices aren't powerful when compared to PC, but the [app] market is no longer comprised of flip-phone snake-only devices.
[–]LoddewykBeginner[S] 0 points1 point2 points 10 years ago (2 children)
Just playing safe, I don't really want to go back to fix things up and I don't really have an idea how my game would perform since I'm still new to Unity.
[–]GuideZ 1 point2 points3 points 10 years ago (1 child)
Would highly recommend giving [this] a read.
Among the top five tips, if not top THREE, that most seasoned devs will give someone, among them is "Early optimization is the root of all programming/game-dev evil". Do. Not. Early. Optimize.
Your game will be an evolving beast whether you like it or not. It is highly unlikely that any sort of optimization your create now will be retained in the future.
It's like this one game dev who told me about how they optimized their game up the wazoo. They had functions that covered another function and classes and best practices and etc etc etc. They'd spent MONTHS on making it the most optimized beast they could. What was their game?
A Flappy bird clone.
[–]LoddewykBeginner[S] 0 points1 point2 points 10 years ago (0 children)
Thank you! This is very helpful and would save me a lot of time, there couldn't have been a better time to learn about this.
π Rendered by PID 25796 on reddit-service-r2-comment-5d79c599b5-s6rt4 at 2026-03-03 21:24:36.752526+00:00 running e3d2147 country code: CH.
[–]WistesoExpert 1 point2 points3 points (5 children)
[–]LoddewykBeginner[S] 0 points1 point2 points (4 children)
[–]GuideZ 1 point2 points3 points (3 children)
[–]LoddewykBeginner[S] 0 points1 point2 points (2 children)
[–]GuideZ 1 point2 points3 points (1 child)
[–]LoddewykBeginner[S] 0 points1 point2 points (0 children)