Feed aggregator

Fantastic Icons Pack by Mero Store Studios

Asset Store newest packages - 2025, May 26 - 13:34
Over 2000 high-quality pixel art icons, ideal for RPGs, strategy, and adventure games. Organized, easy to use, and perfect for quick UI integration or prototyping.
  • 2000+ handcrafted pixel art icons
  • 🗂️ Icons categorized by type (items, skills, tools, UI, resources, weapons, etc.)
  • 🖼️ Standard size: 16x16 pixels (scalable as needed)
  • 🌐 File format: PNG with transparent backgrounds
  • 🧩 Spritesheets and individual files included
  • 📁 Well-organized folder structure
  • 🎮 Optimized for 2D games (RPG, strategy, adventure, crafting)
  • 🛠️ Ready to use in Unity, or any game engine
  • 🖌️ Editable in any image editing software (Photoshop, Aseprite, etc.)

The Fantastic Icons Pack by Mero Store Studios is a powerful collection of over 2000 handcrafted pixel art icons, designed to bring clarity, charm, and polish to any 2D game. Whether you're building an RPG, adventure, simulation, or strategy game, this pack provides a wide variety of well-organized and easily integrable icons to fit your UI, inventory, crafting systems, skill trees, achievements, and more.

Each icon is delivered in a consistent and cohesive pixel art style, ideal for retro-inspired and modern games alike. With categories covering items, tools, spells, resources, effects, actions, and characters, you’ll save time and energy while significantly improving your game’s visual quality.

Key Features:

  • 🎨 Over 2000 pixel-perfect icons
  • 📁 Organized folders and clean sprite sheets
  • 🎮 Perfect for RPGs, strategy, adventure, crafting, and simulation games
  • 🔧 Easily customizable for unique projects
  • 💾 Ready-to-use PNG files with transparent backgrounds
  • 🧩 Modular and consistent style for seamless UI integration

Why Choose This Pack?


Whether you're an indie developer or prototyping a large-scale game, this pack delivers both quantity and quality. Every icon is carefully designed to communicate clearly and work across different screen sizes and resolutions.


Bring your game's interface to life with this massive and flexible icon set. Save time, improve consistency, and create stunning UI experiences—right out of the box.


Price $4.99

Anime Female Dancer - Pack 12 (3 outfits) by Kameworks

Asset Store newest packages - 2025, May 26 - 13:32
Anime Girls Dancer Pack: 3 outfits with 1 base model support humanoids have some basic animation.

Humanoid Rig Support: Yes

Animation: Yes (6 animation sample)

UV mapping: Yes

Polygon count:

vf_0034: ~31000 Tris:

4 Base Maps (1024 x 1024) (upper body, lower body, hair, foot)

4 Normal Map (1024 x 1024) (upper body, lower body, hair, foot)

4 Mask Map (1024 x 1024) (upper body, lower body, hair, foot) (for change Color)

vf_0035: ~21000 Tris -

4 Base Maps (1024 x 1024) (upper body, lower body, hair, foot)

4 Normal Map (1024 x 1024) (upper body, lower body, hair, foot)

4 Mask Map (1024 x 1024) (upper body, lower body, hair, foot) (for change Color)

vf_0036: ~23500 Tris

4 Base Maps (1024 x 1024) (upper body, lower body, hair, foot)

4 Normal Map (1024 x 1024) (upper body, lower body, hair, foot)

4 Mask Map (1024 x 1024) (upper body, lower body, hair, foot) (for change Color)

Custom Shader Graph for change skin, eye, hair, outfilt color.

Lit and unLit Material.

Anime Girls Pack

Standard Material:

-Diffuse Map, Normal Map.

Custom Shader Graph for change skin color, eye,hair, outfit colors..

Create your own style with:

  • Base skin colors: black, brown, yellow, base and you can change by TintColor in shader get more skin color.
  • 5 Eye color: blue, cyan, pink, brown and yellow: and you can change eye Color with TintColor parameter of Shader.
  • 3 Unique Outfits include: upbody; lowbody and foot. (can change Color for some outfit like image sample).
  • 3 Hairstyles (can change Color for some outfit like image sample).

Model Support Humanoid.

vf_0013; vf_0014; vf_0015

Animation: 13

  • M_IDLE (3)
  • M_RUN
  • M_WALK
  • F_IDLE(3)
  • F_RUN(2)
  • F_WALK (2)
  • DANCE (1)

Animation with be update more in the next release.


Price $49.99

Native Phone Number Picker for Android™ and iOS™ with Editor Integration by Protorius42

Asset Store newest packages - 2025, May 26 - 13:30
Native Phone Number Picker for Android™ & iOS™ with Editor Integration for Unity™ Android is a trademark of Google LLC.

Features:


Native UI Integration: This integration utilizes the native contact picker UI on both platforms, ensuring a consistent and intuitive user experience that aligns with platform conventions.


Cross-Platform Compatibility Designed to work seamlessly on both platforms with a unified API, simplifying development and deployment.


Clear and Concise API Offers a straightforward and easy-to-use C# API for developers to integrate the phone number picker functionality into their applications with minimal code.


Optimized Performance Leverages native platform functionalities for optimal performance and responsiveness.


Easy to Use and Implement, Source Code Included: The plugin boasts a straightforward API designed for ease of integration. The complete source code is included, allowing for free modification and customization to fit your specific project needs.


Thread-Safe: The plugin's core functionality is thread-safe, ensuring reliable operation even in multithreaded Unity environments.


Error-Safe Handling: The API provides robust error-handling mechanisms, allowing you to gracefully manage scenarios where the user might fail or cancel phone number picking.


Async/Await Pattern: The primary API method, `ShowPhoneNumberDialogAsync`, utilizes the modern `async/await` pattern for asynchronous operation. This prevents blocking the main Unity thread, ensuring a smooth and responsive user experience.


Unity Editor Dialog: The plugin includes a convenient Unity Editor dialog that mirrors the runtime functionality, allowing for easy testing and iteration directly within the Unity Editor.


System Font Flags: The country selection within the picker utilizes the device's native system fonts to display country flags, ensuring consistent and up-to-date flag visuals.


SwiftUI Showcase: Demonstrates seamless integration between Unity and native SwiftUI, including a practical callback mechanism from native Swift to Unity.


Unity & Jetpack Compose UI Integration Example (Kotlin): This example demonstrates seamless integration between Unity and native Jetpack Compose UI (Kotlin), including a practical callback mechanism from native Kotlin to Unity.


Simulator Support: The plugin is fully functional within the device simulator, providing a convenient environment for testing and debugging your application's integration without requiring a physical device.


Using the API in C#


https://gist.github.com/protorius42/d8aea9dbb0ed439fa11367250b29cd20


// (1) Create an instance of NativePhonePicker

var picker = new NativePhonePicker();


// (2) Create parameters for the dialog

var pickerParams = new NativePhonePickerParams(

textFieldLabel: "What's your phone number?",

buttonLabel: "Confirm",

selectedCountry: "US",

title: "Phone Picker Sample",

selectedCountryLabel: "Select Country"

);


// (3) Show the phone number picker dialog asynchronously

var result = await picker.ShowPhoneNumberDialogAsync(pickerParams);


// (4) Process the result

if (result.Item2 == NativePhoneErrorCodes.NoError)

{

this.label.text = $"{result.Item1.DialCode}{result.Item1.Number}";

}

else

{

this.label.text = $"Error: {result.Item2}";

}



You can quickly and effortlessly implement a native phone number input solution with a country code picker featuring system flags and automatic dial codes. Users simply select their country and enter their number.


We hope this asset saves you significant time and effort on UI implementation, allowing you to concentrate on your core game or application development.


Android is a trademark of Google LLC.


Price $9.49

Radical Robots - Mike Customizable Robot Character by Tacko3D

Asset Store newest packages - 2025, May 26 - 13:26
Customize your very own Robot with Mike And arm him multiple accessories!

Polygon count: MikeZ - 18,282

Buster - 1,191

Power Pod - 1960

Number of meshes/prefabs - 3 Models (1 Rigged Model, 2 Static Mesh Models) and 1 Prefab

Rigging: Yes

Animation count 41 Animations

Animation type list Looped Combat, Movement, and Emote Animations

UV mapping: Yes

LOD information (count, number of levels) - There are no LODs

Types of materials and texture maps (e.g., PBR) - PBR Textures and 25 Materials + 2 Material Graphs

20 Textures

Texture Dimensions- EVERY TEXTURE IS 2048

PBR METALLIC/SPECULAR

Includes Normal Maps, Color, Texture Mask for Customization and Stacked Combined Textures with Ambient Occlusion, Specular and Mettalic


Part of the Radical Robots series

Get more assets on my Patreon and Fab stores

A Heroic Robot from the Past returns with a renewed model, rig, animations and materials. 

NOW IN UNITY!

41 Animations

CUSTOMIZABLE MATERIALS

AND ATTACHABLE PROPS!

Grow your robot army with Mike and his Radical Buster!

Check it out on youtube for full features!


Price $24.99

3D House by Fish Journey

Asset Store newest packages - 2025, May 26 - 13:23
This 3D exterior rendering showcases a modern single-family home designed with clean lines, balanced geometry, and natural materials. The façade blends wood, concrete and glass elements.

(7)Big.Blocks: 60 Tris

               Texture 4K

Big.Roof: 86 Tris

          Texture 4K

(9)Big.Window: 194 Tris

               Texture 4K

(9)Big.Window.Glass: 2 Tris

                     Texture 4K

(2)Column.001: 44 Tris

               Texture 4K

Door: 150 Tris

      Texture 4K

Garage: 32 Tris

        Texture 4K

Handle: 76 Tris

        Texture 4K

Medium.Window.Glass: 2 Tris

                     Texture 4K

Mediunm.Window: 174 Tris

                Texture 4K

(7)Small.Blocks: 60 Tris

                 Texture 4K

Small.Roof: 45 Tris

            Texture 4K

Small.Window: 68 Tris

              Texture 4K

Small.Window.Glass: 2 Tris

                    Texture 4K

Stairs: 38 Tris

        Texture 4K

Wall.First.Floor: 218 Tris

                  Texture 4K

Wall.Second.Floor: 26 Tris

                   Texture 4K

Wall.First.Floor: 218 Tris

                  Texture 4K


Large windows allow for ample natural light, while the flat roof and minimalist landscaping enhance the home’s contemporary character. Subtle lighting accents and realistic textures bring the scene to life, offering a compelling visual of the residence in its natural setting. Perfect for real estate presentations, architectural previews, or design concept pitches.


Price $6.99

Co-Dev Ai Assistant by SuperHorizonstudios

Asset Store newest packages - 2025, May 26 - 13:15
Co-Dev enhances your game development workflow with AI-powered chat, real-time error resolution, smart asset pinning, and tagging—streamline your projects like a pro

Requirements:

  • Unity Editor Version: 2020.3 or higher
  • Internet connection required
  • Gemini API key (user-supplied)

Support Contact:

Co-Dev: The Ultimate AI Assistant and Asset Management Tool for Game Developers

Enhance your Unity game development workflow with Co-Dev, an advanced in-editor AI assistant combined with a powerful asset organization system. Created by SuperHorizon Studios, Co-Dev offers AI-powered code support, real-time error debugging, and smart asset navigation—all from within the Unity Editor.

Key Features


AI-Powered Assistance
Get real-time answers to technical questions and generate development ideas directly within the editor using advanced AI support.


Error Debugging
Automatically detect and analyze runtime and compile-time errors. Send issues to the integrated AI system and receive actionable fixes instantly.


Code Optimization
Easily select sections of your source code and use AI to refactor and improve it, generating cleaner and more efficient solutions.


Session Management
Save, load, and organize your AI chat sessions in JSON format for future reference and project continuity.


History Control
Reset AI memory and clear conversations with a single click to maintain clarity and focus during development.


Secure API Management
Safely store and manage your AI API key using Unity’s secure Editor Preferences system.

Advanced Asset Management


Pin Assets and Folders
Access critical assets and folders instantly through a customizable Quick Access panel.


Custom Tagging System
Organize your project with structured asset tagging. Use tags like "UI", "Core", "Multiplayer", and more to keep large projects manageable.


Optimized Workflow
Speed up project navigation, improve asset discoverability, and streamline collaboration within your team.

Why Choose Co-Dev?

  • Improve productivity by combining asset management and AI chat directly within the Unity Editor.
  • Debug and fix errors faster with AI-assisted suggestions.
  • Keep your project clean and scalable through structured tagging and quick access tools.
  • Designed for serious developers focused on speed, clarity, and professional-grade tooling.

🛡️ Gemini API Usage Disclaimer

Disclaimer: This tool integrates with Gemini API, a third-party AI service provided by Google. An active internet connection and a valid Gemini API key are required to access AI features. By using these features, you agree to the terms of service and privacy policy set by Google. Users are responsible for acquiring and managing their own API key.


Price $20.00

2D Platformer Candy Paradise by BluBlu Games

Asset Store newest packages - 2025, May 26 - 13:10
Dive into sweetness with the “2D Platformer Candy Paradise” asset pack! Perfect for creating magical, candy-themed levels full of pastel skies, desserts, rainbow backdrops, and sugary platforms.

*Disclaimer* To have a working scene, create a new project or import assets to a 2D URP (Universal 2D) project. Assets also work in the 2D Built-in Render Pipeline type of project.


Technical Details:

  • Category: 2D
  • Source File Sizes: Compatible with various resolutions, easily scalable
  • Asset Dimensions: In the margins of 8192 x 128 pixels:

8192x4096 (1 piece)

6216x3584 (1 piece)

5680x6048 (1 piece)

5436x2636 (2 pieces)

4096x4096 (3 pieces)

2048x2048 (1 piece)

2048x1049 (1 piece)

2048x1024 (1 piece)

1243x559 (1 piece)

1243x309 (1 piece)

1024x1024 (16 pieces)

1024x512 (3 pieces)

1024x256 (1 piece)

808x808 (1 piece)

602x699 (2 pieces)

512x512 (3 pieces)

512x348 (1 piece)

512x128 (1 piece)

  • File Count: Over 140 unique assets (with prefabs)
  • Asset resolution: 72, 264, 132 and 300 DPI
  • Animated: Yes
  • Animation Types: Particle System, skeleton.

*Disclaimer* To have a working scene, create a new project or import assets to a 2D URP (Universal 2D) project. Assets also work in the 2D Built-in Render Pipeline type of project.

The "2D Platformer Candy Paradise" asset pack offers a delightful collection of candy-themed environment assets perfect for platformers, runners, or casual games. 

It features detailed sweets like lollipops, cupcakes, cotton candy trees, and glowing ice cream cones. Customizable elements like modular platforms and decorations support diverse layouts, while particle systems (e.g., soda bubbles and sparkling trees) bring scenes to life with animated charm. Ideal for games targeting fun, whimsical, or fantasy settings.

This pack is perfect for letting you create vibrant or dreamy levels with ease.


Price $20.00

80s Firetruck by Perfectvertexstudio

Asset Store newest packages - 2025, May 26 - 12:56
FireTruck with industrial environment. Full textured model with clean topology. High accuracy exterior model.

FireTruck with industrial environment. 

Full textured model with clean topology.

High accuracy exterior model.

Different tires for rear and front wheels.

High detailed cabin - seams, rivets, chrome parts, wipers and etc.

High detailed equipment - gauges, valves, tubes etc.

High detailed rims and tires, with PBR maps

FireTruck - 91550 tris and 58608 verts.

Lowpoly interior - 8521 tris 5248 verts.

Wheels - 15772 tris and 8712 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.




10 materials for FireTruck

FireTruck_body (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

FireTruck_parts (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

FireTruck_wheels (2048x2048 BaseMap/MaskMapNormal/Mixed_AO)

FireTruck_fabric (2048x2048 BaseMap/MaskMapNormal/Mixed_AO)

FireTruck_glass (1024x1024 BaseMap/MaskMap/Normal)

FireTruck_headlights_glass (1024x1024 BaseMap/MaskMap/Normal)

FireTruck_lights_glass (1024x1024 BaseMap/MaskMap/Normal)

FireTruck_interior (1024x1024 BaseMap/Mixed_AO)

FireTruck_mirrors (1024x1024 BaseMap/MaskMap/Normal)

shadow_plane (1024x1024 BaseMap)



Model comes with environment - floor, buildings, walls and containers.All models and prefabs are available with this product.

Environment details


container - 1 material (2048x2048 BaseMap/MaskMap/Normal) * 

floor - 1 material (2048x2048 BaseMap/MaskMap/Normal)

wall - 1 material (2048x2048 BaseMap/MaskMap/Normal)

store - 1 material (2048x2048 BaseMap/MaskMap/Normal) 



*** three different textures for containers - red, blue, yellow.


29 maps for environment


Model ready for real-time apps, games, virtual reality and augmented reality.

Feel free to ask me about this product before purchasing.

No refunds will be given after the asset has been downloaded.



FireTruck with industrial environment. 

Full textured model with clean topology.

High accuracy exterior model.

Different tires for rear and front wheels.

High detailed cabin - seams, rivets, chrome parts, wipers and etc.

High detailed equipment - gauges, valves, tubes etc.

High detailed rims and tires, with PBR maps

FireTruck - 91550 tris and 58608 verts.

Lowpoly interior - 8521 tris 5248 verts.

Wheels - 15772 tris and 8712 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.


Price $49.00

Vintage tanker trailer by Perfectvertexstudio

Asset Store newest packages - 2025, May 26 - 12:56
Vintage fuel tanker with industrial environment.

Vintage fuel tanker with industrial environment. 

Tanker - 23686 tris and 14461 verts.

Wheels - 14668 tris and 8404 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.




12 materials for pickup

Trailer_tanker_black (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_tanker_blue (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_tanker_orange (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_tanker_red (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_tanker_red2 (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_tanker_lights (1024x1024 BaseMap/MaskMap/Normal)

Trailer_tanker_wheels (2048x2048 BaseMap/MaskMap/Normal/Mixed_AO)

shadow_plane (1024x1024 BaseMap)



Model comes with environment - floor, buildings, walls and containers.All models and prefabs are available with this product.

Environment details


container - 1 material (2048x2048 BaseMap/MaskMap/Normal) * 

floor - 1 material (2048x2048 BaseMap/MaskMap/Normal)

wall - 1 material (2048x2048 BaseMap/MaskMap/Normal)

store - 1 material (2048x2048 BaseMap/MaskMap/Normal) 



*** three different textures for containers - red, blue, yellow.


29 maps for environment


Feel free to ask me about this product before purchasing.

No refunds will be given after the asset has been downloaded.


Vintage fuel tanker with industrial environment. 

Tanker - 23686 tris and 14461 verts.

Wheels - 14668 tris and 8404 verts.

Model comes with shadowplane.

No LODs.


Price $20.99

Sidedump trailer by Perfectvertexstudio

Asset Store newest packages - 2025, May 26 - 12:56
Sidedump trailer with industrial enviroment.

Sidedump trailer with industrial enviroment.

Models comes with separated parts.

Tanker - 36799 tris and 20771 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.


4 materials for Trailer_sidedump

Trailer_sidedump (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_sidedump_lights (1024x1024 BaseMap/MaskMap/Normal)

Trailer_sidedump_wheels (2048x2048 BaseMap/MaskMap/Normal/Mixed_AO)

shadow_plane (1024x1024 BaseMap)



Model comes with environment - floor, buildings, walls and containers.All models and prefabs are available with this product.


Environment details


container - 1 material (2048x2048 BaseMap/MaskMap/Normal) * 

floor - 1 material (2048x2048 BaseMap/MaskMap/Normal)

wall - 1 material (2048x2048 BaseMap/MaskMap/Normal)

store - 1 material (2048x2048 BaseMap/MaskMap/Normal) 



* three different textures for containers - red, blue, yellow.


29 maps for environment (including additional colos schemes and licence plates)


Feel free to ask me about this product before purchasing.

No refunds will be given after the asset has been downloaded.



Sidedump trailer with industrial enviroment.

Models comes with separated parts.

Tanker - 36799 tris and 20771 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.


Price $23.99

Dropdeck trailer by Perfectvertexstudio

Asset Store newest packages - 2025, May 26 - 12:56
Dropdeck trailer with cargo and industrial enviriment

Models comes with separated parts and additional color schemes

Tanker - 22716 tris and 13703 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.




10 materials for Trailer_flatbed

Trailer_dropdeck_black_metal (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_dropdeck_black_wood (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_dropdeck_blue_metal (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_dropdeck_blue_wood (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_dropdeck_red_metal (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_dropdeck_red_wood (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_dropdeck_lights (1024x1024 BaseMap/MaskMap/Normal)

Trailer_dropdeck_wheels (2048x2048 BaseMap/MaskMap/Normal/Mixed_AO)

Trailer_dropdeck_cargo (2048x2048 BaseMap/MaskMap/Normal/Mixed_AO)

shadow_plane (1024x1024 BaseMap)



Model comes with environment - floor, buildings, walls and containers.All models and prefabs are available with this product.

Environment details


container - 1 material (2048x2048 BaseMap/MaskMap/Normal) * 

floor - 1 material (2048x2048 BaseMap/MaskMap/Normal)

wall - 1 material (2048x2048 BaseMap/MaskMap/Normal)

store - 1 material (2048x2048 BaseMap/MaskMap/Normal) 



*** three different textures for containers - red, blue, yellow.


29 maps for environment (including additional colos schemes and licence plates)


Feel free to ask me about this product before purchasing.

No refunds will be given after the asset has been downloaded.



Models comes with separated parts and additional color schemes

Tanker - 22716 tris and 13703 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.


Price $21.99

Lowboy semi trailer by Perfectvertexstudio

Asset Store newest packages - 2025, May 26 - 12:56
High detailed trailer model with industrial enviroment. Lowboy trailer - 44544 tris and 26569 verts. Wheels - 43164 tris and 24648 verts.

High detailed model.

Lowboy trailer - 44544 tris and 26569 verts.

Wheels - 43164 tris and 24648 verts.


Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.




4 materials for lowboy trailer 

Trailer_lowboy (4096x4096 BaseMap/MaskMapNormal/Mixed_AO)

Trailer_lowboy_lights (1024x1024 BaseMap/MaskMap/Normal)

Trailer_lowboy_wheels (2048x2048 BaseMap/MaskMap/Normal/Mixed_AO)

shadow_plane (1024x1024 BaseMap)




Model comes with environment - floor, buildings, walls and containers.All models and prefabs are available with this product.

Environment details


container - 1 material (2048x2048 BaseMap/MaskMap/Normal) * 

floor - 1 material (2048x2048 BaseMap/MaskMap/Normal)

wall - 1 material (2048x2048 BaseMap/MaskMap/Normal)

store - 1 material (2048x2048 BaseMap/MaskMap/Normal) 



*** three different textures for containers - red, blue, yellow.


29 maps for environment (including additional colos schemes and licence plates)


Feel free to ask me about this product before purchasing.

No refunds will be given after the asset has been downloaded.



Lowboy trailer - 44544 tris and 26569 verts.

Wheels - 43164 tris and 24648 verts.

Model comes with shadowplane.

No LODs.

All screenshots from Unity, with Post Procecessing Package.


Price $25.99

Integration of PlayMaker custom actions for Unity Gaming Services by Zadkiel Studios©

Asset Store newest packages - 2025, May 26 - 12:35
  • You need to have PlayMaker to use this asset.

  • It is necessary to configure your Unity Dashboard project for the asset to function correctly.

WARNING: Make a backup before importing or updating the package to a new version.

PlayMaker + Unity Gaming Services (UGS)


This is an asset for Unity that integrates Unity Gaming Services (UGS) with Playmaker, the popular visual scripting plugin. With this asset, you can easily add powerful backend features like Authentication, Cloud Save, Remote Config, and Leaderboards to your Unity games, using custom actions that integrate seamlessly with Playmaker.


It's easy to use 😯😎
No code, just custom PlayMaker actions!


Scene with examples and documentation 😏👌
The package includes a scenario with example buttons to see how the Asset works and a PDF with complete documentation of the asset for its installation and correct use. 


Full source code included 😯❗
If you like it, please remind others to buy the plugin. Don't just copy and paste it everywhere. Thank you. 😄


This asset includes 30+ custom UGS actions that allow you to:


Core:


  • Initialize UGS: The essential first step to connect to Unity Gaming Services.

Authentication:


  • Sign In Anonymously: Log in users without credentials.
  • Sign In With Username/Password: Authenticate using username/password, including linking from existing anonymous sessions.
  • Sign In With Unity Player Account: Use the familiar Unity account login (opens browser), including linking from existing sessions.
  • Sign Up With Username/Password: Register completely new users.
  • Sign Out: Log out the current user.
  • Check Authentication: Verify if a user is currently signed in.
  • Update Password: Allow signed-in users to change their password.
  • Set Player Name: Update the user's display name.
  • Get Player Info: Retrieve the current user's ID, Name, Creation Date, and linked providers.
  • Delete Account: Permanently delete the current user's account (Requires explicit confirmation!).

Remote Config:


  • Fetch Remote Config: Get the latest configuration from the server (or use cached values). Run this before getting values.
  • Get Remote Config String/Int/Float/Bool/Json: Read specific configuration values after a successful fetch.

Cloud Save:


  • Load Cloud Data: Loads all or specific player data keys from the cloud into a local cache. Run this before getting cached values.
  • Get Cloud String/Int/Float/Bool/Json Value Cached: Reads values directly from the cache populated by LoadCloudDataUGS.
  • Set Cloud String/Int/Float/Bool Value: Stages a value to be saved. Does NOT save immediately.
  • CloudSaveData: Saves all data currently staged using the Set...Value actions to the cloud. Clears the staged save data on success.
  • Clear Cloud Save Cache: Clears the locally cached Cloud Save data (useful on sign out).

Leaderboards:


  • AddLeaderboardScore: Adds or updates the current player's score on a specific leaderboard.
  • Get Player Leaderboard Score: Gets the current player's specific score and rank from a leaderboard.
  • Get Leaderboard Scores Page: Retrieves a page of scores and returns them as a formatted String Array ("Rank. PlayerName - Score").

These actions are designed for ease of use. Just drag them into your PlayMaker states and configure their parameters. This asset includes complete documentation with the description and use of each action, and practical examples to show you how to implement common UGS functionalities.


If you want to use Unity Gaming Services in your Unity games with Playmaker, this is the resource you need.


⚠️ Please read the technical details below ⚠️


Price $19.99

Volumetric Light/Fog 2.0 by dynamics.

Asset Store newest packages - 2025, May 26 - 12:29
Volumetric Light/Fog 2.0 - Bring your scenes to life with next-gen volumetric lighting.

Platform Compatibility:

  • Supported Platforms: Windows, macOS, Linux, iOS, Android, WebGL
  • Unity Version: 2022.3.37f1 or 6 and newer (tested Version)
  • Supported Rendering Pipelines: Universal Render Pipeline

Included Assets:

  • Volumetric Light Renderer Feature
  • Ready to use URP Settings (high quality volume)
  • 6 scripts (Editor, Volumetric Light Features)

Documentation and Support:

Dependencies:

  • Requires Universal Render Pipeline
  • 5 GB Storage
  • Unity Version 2022.3.37f1 or newer (Unity 6 is recommended)

Quick Links -> WEBSITE - E-MAIL


Volumetric Light/Fog 2.0 offers:


☀️ Realistic Volumetric Effects:

Simulate natural volumetric light that adds depth and atmosphere to your scene. Supports all major light types: Directional, Spot, and Point Lights.


Easy Integration:

Quickly set up and seamlessly integrate into Unity projects, saving you time and effort.


🛠️ Customizable:

Adjust the lighting effects to suit your project's needs with a range of adjustable parameters:

  • Intensity and Scattering: Control the brightness and diffusion of light.
  • Raymarch: Adjust the precision and quality of the volumetric effect.
  • Distance and Diffusion: Define how light interacts over distance and spreads through the atmosphere.
  • Noise Settings: Add realistic variability to your lighting effects.

⚡ Advanced Light Models:

Choose between different scattering models to accurately depict various lighting scenarios, enhancing realism.


❤️ Platform Compatibility:

Designed for PC and MOBILE aswell as Unity 6.


ℹ️ Documentation and Support:

Comprehensive guidelines and support for flawless implementation.


--> See Technical details for more information.


Price $69.99

Camera FX Shaders Pack by By Mylan.T

Asset Store newest packages - 2025, May 26 - 12:11
This asset includes shaders that apply visual effects like blur, glitch, and more directly to the camera. Great for enhancing atmosphere and perfect for horror, sci-fi, or stylized games.
  • -Works in both 3D and 2D projects
  • -Unlike Post-Processing Stack, it has virtually no FPS impact
  • -Effects are applied only to the camera’s render output (UI/Canvas remain unaffected)
  • -You can enable individual effects or layer multiple effects simultaneously

This asset contains 8 core effects, including: blur, glitch, retro, dot mask, blinking dot, bulged, nausea, and color pulse.
All of these effects can run simultaneously, allowing you to combine them and create even more variations beyond the initial 8.

Using this asset is very easy — simply add the C# script with the desired shader to any GameObject that has a Camera component. And then just hit Play — that’s it!


TEST IT ONLINE

ONLINE DOCUMENTATION


Price $15.99

RETROBOOT UI by SojoG

Asset Store newest packages - 2025, May 26 - 11:44
Retro CRT-style UI toolkit with animations, gamepad support, and URP-only custom shaders—polished and plug-and-play for retro-inspired games.

⚙️ Technical Details

Supported Render Pipeline:

  • Universal Render Pipeline (URP) only
  • Not compatible with Built-in or HDRP

Input Support:

  • Gamepad only (Keyboard/mouse input not supported yet)

Unity Version:

  • Unity 2022.3 LTS or newer
  • Developed and tested with Unity 6 (6000.0.42f1)

Dependencies:

  • TextMeshPro
  • Unity Input System

Package Includes:

  • CRT Post-processing profile (URP Volume)
  • Custom button border shader
  • Modular C# scripts for UI elements
  • Sound FX hooks and audio feedback
  • Inspector customization for easy setup
  • Example scene

Known Limitations:

  • Keyboard and mouse support planned in future update
  • URP-only shaders and effects

📝 Description

RetroBoot UI Toolkit brings CRT nostalgia to your Unity game with a fully-featured retro-style UI system. Designed for Unity URP and gamepad input, this toolkit delivers a unique aesthetic and smooth user experience with:

  • Authentic CRT post-processing effects
  • Custom shader-driven button borders
  • Animated menu transitions and credits
  • Audio-reactive volume bar
  • Custom toggles and dynamic input handling
  • Gamepad-first UI navigation
  • Polished editor inspectors for a clean workflow

All components are modular, customizable, and built for seamless integration—no bloat, just clean retro UI power.


Price $10.00

Stylized Textures - Vol 172 - Fabric by Yoge

Asset Store newest packages - 2025, May 26 - 11:20

Resolution: 2048x2048

Maps included:

- Color

- Normal

- AO

- Height

- Mask

This pack contains:

13 seamless textures


Price $7.99

Toon Effect Collection by CartoonVFX9x

Asset Store newest packages - 2025, May 26 - 10:52
Varity of effects for making your games easily, quickly and awesome.

-For the Built-in Render Pipeline.

-It's useful in make the action mobile game.

-Work in 2D

- 237 Already prefabs.

- 237 Effects ( Six main Colors: Blue, Purple, Green, Yellow, White and Red) such as:

Explosion, Heal, Spell, Firework, Fire, Level Up, Poision, Impact, Smoke, Puzzle Game Effect Match3 Game Effect…etc

- 137 Textures ( 101 simple textures and 36 texture sheets). They are optimized for mobile game: 512x512 and 2048x2048Pixel.

- 138 Materials.

- 1 Background demo.

- 1 Readme document.

- 1 Sample scene.


Price $39.99

Stylized forest cabin set by CurlyBee

Asset Store newest packages - 2025, May 26 - 08:37
Build cozy forest scenes with this stylized asset pack! Includes cabins, bridge, indoor and outdoor furniture, nature props, modular fences, and more.

CONTENT:


  • Cabins & Buildings:
    • 2 stylized log cabins (versions with big or small windows).
    • 2 brick-style cabins (versions with big or small windows).
    • Furnished version prefab included for each cabin.

  • Furniture & Decor:
    • Indoor and outdoor furniture, including:
      • benches, picnic tables, chairs, couch, cabinet, fireplace, ...
    • Table props: plate, wine bottle and glasses, pumpkin, apple, ...
    • Outdoor decor: rocks and stones, mushrooms.

  • Modular Elements:
    • Wooden bridge with 3 versions (no poles, round or square poles).
    • Modular rope fence system with standalone, end and straight pieces in 2 lengths.
    • Stone path pieces (various sizes) for curved and straight paths.

  • Nature Props:
    • 6 stylized tree types and a bush.
    • Rocks in multiple sizes and shapes.
    • Mushrooms and log pile for added detail.

  • Campfire & Outdoor Setup:
    • Functional-looking firepit with cooking tripod and pot.
    • Small stumps for sitting around the fire.
    • Firewood, axe, and wood chopping block.

  • Example Scenes:
    • 5 scenes showcasing how these assets can be combined and used.
    • 1 scene provide an organised overview of the assets (all available prefabs).


TEXTURES AND MATERIALS:


  • Textures:
    • stone cabin, fireplace and chimney are using texture.
    • resolution: 1024x1024.

  • Number of Materials:
    • 5 materials for different shades of wood,
    • 3 material for greenery,
    • 3 materials for apple, grapes, pumpkin and wine,
    • 2 transparent materials for river and glass,
    • 1 texture material for stone,
    • 16 furniture and other materials (couch, pillows, door knob, lantern, ...).

  • Material Types:
    • Standard materials.
    • Alpha transparency and albedo textures.
    • Optimised for low-poly stylized look.


POLYCOUNT:


Polycount of the prefabs, including optimized mesh colliders:


  • Cabins:
    • 5.000 - 16.000 triangles per unfurnished cabin,
    • 12.000 - 22.000 triangles per furnished cabin versions.

  • Furniture & Decor:
    • 200 - 1.500 triangles per indoor piece (e.g. fireplace, couch, etc.),
    • 400 - 2.000 triangles per outdoor piece (e.g. table, benches, etc.).

  • Bridges & Modular Fences:
    • 1.500 - 4.000 triangles per bridge,
    • 100 - 800 triangles per fence piece, depending on variation.

  • Camp Props:
    • 700 - 5.000 triangles for campfire elements (e.g. firepit, pot, firewood, etc.),
    • 200 - 9.000 triangles for outdoor setup (e.g. chopping block, firewood, axe, etc.).

  • Nature Props:
    • 300 - 900 triangles per tree, depending on variation,
    • 200 - 300 triangles per rock or stone, depending on variation,
    • 200 - 4.000 triangles for other models (mushrooms, pumpkins).


RENDERING PIPELINE COMPATIBILITY:


  • Built-in Render Pipeline: yes.
  • Universal Render Pipeline (URP): instructions for converting materials in documentation.
  • High Definition Render Pipeline (HDRP): instructions for converting materials in documentation.


ADDITIONAL FEATURES:


  • Modular Fences: Snap together seamlessly using Unity’s “snap to grid” function, allowing users to create custom fence designs without visible seams.
  • Drag-and-Drop Ready: Assets are ready to use out of the box — no setup required.
  • Customizable Appearance: Most of the assets use basic materials without textures, allowing for quick color adjustments directly in Unity — for custom color palette or adapting to different art styles.
  • Prefab Count: Over 80 prefabs.


EXAMPLE SCENES INCLUDED:


All scenes that are visible on product page are included in the assets pack:

  • five scenes showcasing how these assets can be combined and used in your game.
  • one sample scene with all available prefabs, providing an organised overview of the assets, for easy browsing and preview.


FILE STRUCTURE:


  • Prefabs: Folder contains all ready-to-use prefabs.
  • Materials: Folder with all materials and texture files.
  • Scenes: Includes 6 example scenes.


PACKAGE SIZE AND FILE FORMAT:


  • Total File Size: 6.2 MB
  • File Format: .unitypackage

Build Cozy Forest Scenes with Stylized Assets


Stylized pack designed for cozy forest scenes, inviting cabins, and outdoor adventures.

Create charming woodland environments with this low-poly asset pack — perfect for stylized, fantasy, or cartoony game worlds. Ideal for peaceful forest getaways and campsites.



Key Features:


  • Cabins:

Includes both log-style and stone-brick cabins, with two sizes of windows. Each model includes version with basic furniture — perfect for set dressing or close-up views.


  • Bridges & Fences:

Build wooden bridges over rivers or define property boundaries with modular rope fences. Fences snap together cleanly using Unity’s grid/snapping tools.


  • Furniture & Picnic Areas:

Fill your cabin interiors with stylized basic furniture, like fireplace and couch, or outdoor areas with tables, benches and picnic setups. Add storytelling details like a chopping block, firewood, or a campfire. Ideal for gameplay zones or decorative elements.


  • Stylized Nature Elements:

Includes low-poly trees in various shapes, bush, rocks, and mushrooms to bring your forest to life. Example of the fround with river is also included.


  • Colliders & Optimization:

Prefabs include custom mesh colliders. All models are low poly and share a consistent stylized look.


  • Demo Scenes Included:

Explore a pre-made scenes to quickly understand how the pieces fit together and to jumpstart your own level design.



Whether you're building a peaceful riverside retreat, a hunting cabin in the woods, or a cozy camp in a magical forest, this asset pack provides a flexible, stylized toolkit for your world-building needs.


Price $4.99

Low Server pack by VP.Studio 3d

Asset Store newest packages - 2025, May 26 - 08:22
A set of lowpoly servers with whole and destroyed models

Technical Details
Features:
Rigged (Epic)
LODs (4)
Rigged: No

Rigged to Epic skeleton: No

Number of characters: 4

Vertex counts of characters: 12-1803

Number of Static Meshes: 25

Number of Materials and Material Instances: 2

Number of Textures: 1

Texture Resolutions: 64*64

Supported Development Platforms:

Windows: Yes

Mac: Yes


Price $4.99

Pages

Subscribe to Babel X3D aggregator