Feed aggregator

Quad Size Matcher - Tool for Matching Quad Size by Sunyunie

Asset Store newest packages - 2025, April 16 - 12:28
Quad Size Matcher is a utility that easily and quickly adjusts the size of a Quad to match the size of an image.

Supported Platforms: Windows, Mac


Contact: cathook@naver.com

Quad Size Matcher is a utility that easily and quickly adjusts the size of a Quad to match the size of an image.


Main Features:

  • Automatic Quad size adjustment
  • Material creation and automatic size adjustment
  • Support for Sprite/Texture
  • Support for all rendering pipelines

Guide:


Price $0.00

Turn Based RPG Enemies Pack 04 by ElvGames

Asset Store newest packages - 2025, April 16 - 11:36
Animated Turn Based RPG Enemies for your project!

Sprites: 60

Sprite Size: 512x64

Sprite Frame Size: 64x64

Turn Based RPG Enemies Pack 04


Introducing our latest asset pack, perfect for your turn-based RPG game - the Pixel Battlers Asset Pack! This pack includes a variety of monsters, the perfect pixel art retro graphics that will bring your game to life.


Asset Content:

  • Turn Based RPG Animated Monsters for your project!
  • 12 Monsters for your game!
  • 4 Color Variations!
  • 8-Bit Variation Included!
  • 64x64 Frame size!
  • 6-9 Frames animation per enemy!

Asset Bundle from ElvGames:


All-in-One Packages:


Please don't forget to review and provide us with your feedback on this package, that would really help us improve our work! :)


Price $5.99

Ambient Horror Music Pack 4 by ElvGames

Asset Store newest packages - 2025, April 16 - 11:36
Horror Musics for your project!

Audio file types: wav

Sample rate: 44.1 kHz

Bit depth: 16

Loopable: Yes

Additional: Stereo

Ambient Horror Music Pack 4


Seven ambient loops, perfect for your horror projects. We hope you enjoy!


Tracklist:

  • The Sound Behind the Wall (1:29)
  • Call of The Sirens(1:09)
  • Descent (1:34)
  • The Hangman (1:05)
  • Circuitry Malfunction (1:35)
  • No Hope (1:29)
  • Faint (1:10)
  • All tracks are loopable or have loopable versions included!

More Music Series:


Get Fantasy Fanfare Mega Music Bundle and receive this pack together with all our music packs, including lifetime updates!


Price $6.00

Stylized Textures - Vol 155 - Straw by Yoge

Asset Store newest packages - 2025, April 16 - 10:37

Resolution: 2048x2048

Maps included:

- Color

- Normal

- AO

- Height

- Mask

This pack contains:

13 seamless textures


Price $7.99

Capture View & Sprite Creator by Boris Lazeyras

Asset Store newest packages - 2025, April 16 - 10:22
Capture and save your scene or game screens. Create your sprites for your inventory or other things, with transparency or a background color.

Features:

Capture from the Game or Scene windows.

Automatic creation of sprites.

Sprite with transparency or background color

Easy integration via Unity Tools menu.

Compatible 2021 2022 and 6000


Capture View & Sprite Creator, is a simple and practical tool to capture screenshots from games or scene in editor mode, and create sprites directly from these catches. Perfect for developers seeking to quickly generate images or inventory sprites without leaving Unity. This plugin fits perfectly into your workflow with an easy access menu.


Features:

Capture from the Game or Scene windows.

Automatic creation of sprites.

Easy integration via Unity Tools menu.


Doc


Discord


Https://www.blinformatique.fr


captureview@blinformatique.fr


Price $8.00

Easy In-Game Notification System by zFhresh

Asset Store newest packages - 2025, April 16 - 09:24
An asset that helps you add various In-Game notifications to your game.

🌟Easy to use: Notifications are triggered with a single line of code, and everything else can be done without the need for additional coding.

🌟Customizable: It is coded based on components, making it easily customizable. The only thing you need to do is enter the prefab, add the IGNT components, and edit the prefab to achieve the desired look.

A component-based and customizable In-Game notification system via prefabs, where developers can add their own components according to their needs.


Features supported as component-based:
🌟
Position: You can pin the notification to the corners.

🌟 Text Animation: Allows you to animate the space between letters and their opacity values.


🌟 Movement Anim: Lets you add entrance and exit animations by entering Offset values.


🌟 Image Flipbook Anim: Allows you to add animations using a flipbook.


🌟 Canvas Group Anim: Allows you to animate the Alpha value in the Canvas Group component.


By creatively using all of these components, you can achieve various animations.


Additionally, it includes functions that animate variables to allow you to code your own components. For details, you can refer to the documentation included in the Asset."


Price $10.00

Inspector Sprite Drawer by DarkHex

Asset Store newest packages - 2025, April 16 - 08:54
This package adds a custom property drawer for sprite preview in Unity Inspector, helping developers efficiently view and manage sprite assets, improving workflow and asset handling
  • Custom Property Drawer: Adds a custom property drawer to Unity's Inspector for displaying sprite assets.
  • Sprite Preview: Allows developers to preview sprite images directly within the Inspector.
  • Efficient Workflow: Enhances asset management by providing an easy way to view sprites without leaving the Inspector.
  • Flexible Integration: Works seamlessly with Unity’s existing sprite system and supports all Unity rendering pipelines (Built-in, HDRP, URP, Custom RP).
  • User-Friendly: Simplifies sprite handling for developers working with multiple sprite assets in their project.

Inspector Sprite Drawer

The Inspector Sprite Drawer is a custom Unity editor tool that directly adds a sprite preview to the Inspector. It allows you to easily view and manage sprite assets by displaying a thumbnail below the object field. Compatible with all render pipelines (Built-in, HDRP, URP, and Custom RP), it simplifies sprite management and enhances the editor workflow.


Price $9.99

SimpleTick by JeremyD

Asset Store newest packages - 2025, April 16 - 07:26
A lightweight, attribute-based tick system for scheduling code execution at fixed intervals.
  • Attribute-Based Callbacks: Use [Tick(interval, mode)] on parameterless methods for effortless scheduling.
  • Dynamic Scheduling: Call OnTick.Schedule or OnTick.ScheduleOnce to add tasks at runtime.
  • Scaled & Unscaled Time: Switch between normal game time (Time.deltaTime) or real-time (Time.unscaledDeltaTime) with TickMode.
  • Pause & Resume: Temporarily pause or resume individual ticks for flexible control.
  • One Manager, All Ticks: A single OnTick component in your scene handles everything, no extra overhead.
  • No Reflection: Compiles [Tick] methods into delegates for fast, direct invocation.
  • Easy Integration: Just drop OnTick onto a GameObject, and you’re ready to go.
  • Clean API: Simple, readable codebase with no heavy dependencies, quick to learn and use.
  • TickValidator: SimpleTick validates your [Tick] methods on scene load to ensure they're parameterless and correctly configured, warning you of any invalid usage automatically.
  • Scoped Tick Support: Tick handles implement IDisposable, allowing for optional using blocks to automatically unschedule ticks when out of scope: perfect for tools, tests, or temporary behavior.
  • Custom Error Handling: Define per-tick error callbacks to isolate failures and prevent a single exception from halting the scheduler.
  • Supports Up to 3 Arguments: You can pass up to three arguments directly to dynamically scheduled functions using overloads. No need to wrap everything in a closure unless you want to.
  • Completely MonoBehaviour-Decoupled Backend: Internally decoupled from Unity’s update loop. Ticks are processed via a single scene bridge, but the engine logic is mostly portable for future custom use outside Unity if needed.

Easily run methods at set intervals in your Unity projects with this hassle-free tick scheduler. Use [Tick] attributes for automatic callbacks, or schedule tasks dynamically via a simple API. Ideal for timers, periodic updates, and background jobs, no complex setup required. Suitable for any genre or project where you need repeatable or one-off timed events. The system supports both scaled time (paused with the game) and unscaled time (real-time), giving you full control over scheduling in any scenario. Drop it in, run on time: no boilerplate required.


This system is useful for:

  • Cooldowns and ability timers
  • Health regeneration ticks
  • AI pathfinding or scan intervals
  • Save autosync or cloud checks
  • Multiplayer ping/polling intervals
  • Time-based UI updates (e.g., clock, event countdown)
  • Lightweight alternative to coroutines or InvokeRepeating
  • Any situation where you want repeatable or one-off timed execution

Price $9.99

Rename tool by SR Kerala by SR Studios Kerala

Asset Store newest packages - 2025, April 16 - 07:25
Renaming objects and assets in Unity fast and easy!

- Batch rename, Prefix, Suffix, Incremental, Search & Replace, Uppercase, Lowercase, Remove spaces, Remove numbers, Remove symbols, Conflict check, Undo, Copy-Paste names.

- Works with both URP, HDRP, and Built-in pipelines

- This tool runs entirely in the Unity Editor. It does not include or require any runtime components.

This tool lets you quickly rename GameObjects in the scene and assets in the Project window — all from one simple panel.


Technical Details:-


- Batch rename, Prefix, Suffix, Incremental, Search & Replace, Uppercase, Lowercase, Remove spaces, Remove numbers, Remove symbols, Conflict check, Undo, Copy-Paste names.

- Works with both URP, HDRP, and Built-in pipelines

- This tool runs entirely in the Unity Editor. It does not include or require any runtime components.


Features:-


- Rename Scene Objects and Project Assets

- Works with folders, prefabs, textures, materials, and more.

- Add Prefix, Suffix, and Base Name

- Use custom text, with optional numbers or letters that increase automatically.

- Modify Names in One Click : Remove spaces, numbers, or symbols. Change names to lowercase or UPPERCASE.

- Copy & Paste Names Between Objects : Copy names from one group and apply them to another.

- Undo Support (for scene objects) : Easily undo renaming in the scene with Ctrl + Z.

- Clean and User-Friendly Interface


This tool is perfect for:


🧱 Level Designers

Organize thousands of scene objects quickly and clearly.


🎮 Game Developers

Clean up and manage your project assets with ease.


🖼️ Artists & Asset Creators

Rename large groups of textures, models, and prefabs without hassle.


🛠️ Unity Teams

Keep your hierarchy and project folders clean and consistent.


📦 Anyone Working with Large Projects

Save time and reduce mistakes when naming files or objects.


......................................................................................................................


About Me : "SR Studios Kerala", Indie Game developer & 3D-2D Artist from Alappuzha, Kerala, India


Contact : srstudioskerala@gmail.com


................Thank you for downloading this package................................


Price $6.00

Yokai 01 by Dima1991

Asset Store newest packages - 2025, April 16 - 00:13
Yokai game ready

--------------------------- short technical description ------------------------------------

  • Vertex counts of characters: 26472
  • Texture Resolutions: (armor x4096 head x4096 body x4096 hat x2048 weapons x2048)
  • Number of Animations: 35

----------------------------------- SUPPORT -----------------------------------------------

Email: dima.3dartist@gmail.com

-----------------------------Yokai --------------------------------------

Yokai - https://youtu.be/6yYMClGTYYE

------------------------------------ FEATURES --------------------------------------------

  • Original design (noAI).
  • modular model
  • 4 sets of unique textures
  • animation;

katana;

7x attack

1x death

2x hit

3x idle1

x Jump

1x rage

2x run

6x Walk

1x Turn Left 90

1x Turn Right 90

sword_and_knife;

4x attack

1x death

1x hit

2x idle

1x run

1x Walk


Price $29.99

POLYGON - Kaiju Pack - Stylized Low Poly Assets by Synty Studios

Asset Store newest packages - 2025, April 16 - 00:13
Synty® Studios presents: POLYGON - Kaiju Pack, featuring high quality and hand-crafted assets to supercharge your project.

Witness the colossal might of the Kaiju as they rise from the depths! Ranging from terrifying underwater behemoths to unstoppable titans of chaos, this 3D low-poly asset pack contains four unique Kaiju with plenty of colour options to let your imagination run wild!


These fully rigged and animation ready monsters are prepped for all your city destroying endeavours. Whether they rise as protectors, harbingers of destruction, or something beyond human comprehension, their role in the final battle is yours to decide.


◼ Key Features ◼

  • 4x Kaiju – Gorilla, Lizard, Crab, and Alien
  • Humanoid rig, compatible with Mechanim

◼ Pack Content ◼

  • Gorilla Kaiju
  • Lizard Kaiju
  • Crab Kaiju
  • Alien Kaiju
  • Humanoid rig, compatible with Mecanim.

Price $69.99

Medieval Viking Sword by Arcane Rift

Asset Store newest packages - 2025, April 15 - 20:42
Low Poly Viking Sword.
Texture resolution: 2k and 4k. PBR textures, PNG format.
Demo scene included.

The model includes:

-Polys: 342

-Tris: 678

-Verts: 400

-height: 100cm

The model has:

-1 UV mapping

-1 mesh

-1 material

-1 prefab

-Textures resolution: 2048 and 4096(8 bit), PNG format.

-PBR texture maps: Albedo, Normal, Metallic, Roughness, Ambient Occlusion.

This Viking Sword is perfect for your projects.

The model includes:

-Polys: 342

-Tris: 678

-Verts: 400

-height: 100cm

The model has:

-1 UV mapping

-1 mesh

-1 material

-1 prefab

-Textures resolution: 2048 and 4096(8 bit), PNG format.

-PBR texture maps: Albedo, Normal, Metallic, Roughness, Ambient Occlusion.


Price $0.00

Sci-Fi Alien Worlds Environment Sound Effects Pack by Stormwave Audio

Asset Store newest packages - 2025, April 15 - 20:40
A set of 61 designed sci-fi ambience sound effects, that includes various biomes, weather and moods.

File Count: 61

Format: WAV, Stereo 16bit/44.1kHz

Length: 20m 48s

A set of 61 designed sci-fi ambience sound effects, that includes various biomes, weather and moods.


File List:


Sci-Fi Abandoned Ancient Temple Background Ambience Loop 1-2
Sci-Fi Abandoned Mining Facility Background Ambience Loop 1-2
Sci-Fi Abandoned Spaceship Background Ambience Loop 1
Sci-Fi Abstract Icy Background Loop 1
Sci-Fi Abstract Windy Background Ambience Loop 1-2
Sci-Fi Acid Rain Background Ambience Loop 1
Sci-Fi AI Drone World Background Ambience Loop 1
Sci-Fi Alien Cave Background Ambience Loop 1
Sci-Fi Alien Industrial Horror Background Ambience Loop 1
Sci-Fi Alien Planet Forest Rain Background Ambience Loop 1
Sci-Fi Ancient Holy Temple Background Ambience Loop 1
Sci-Fi Barren Planet Background Ambience Loop 1
Sci-Fi Boiling Ocean Background Ambience Loop 1
Sci-Fi Creepy Cave Background Ambience Loop 1
Sci-Fi Dangerous Industrial Background Ambience Loop 1-2
Sci-Fi Dark Abstract Icy Background Loop 1
Sci-Fi Dark Alien Invasion Background Ambience Loop 1
Sci-Fi Dark Alien Temple Background Ambience Loop 1
Sci-Fi Dark Horror Tension Background Ambience Loop 1
Sci-Fi Dark Industrial Background Ambience Loop 1-2
Sci-Fi Dark Machine World Background Ambience Loop 1-3
Sci-Fi Dark Tension Background Ambience Loop 1
Sci-Fi Dark Underwater Facility Background Ambience Loop 1
Sci-Fi Deep Underwater Facility Background Ambience Loop 1
Sci-Fi Extreme Weather Shelter Background Ambience Loop 1
Sci-Fi Freezing Rain Background Ambience Loop 1
Sci-Fi Freezing Waters Background Ambience Loop 1
Sci-Fi Frozen Planet Heavy Snowstorm Background Ambience Loop 1-2
Sci-Fi Icy Mountain Wind Loop 1
Sci-Fi Industrial Background Ambience Loop 1-2
Sci-Fi Large Alien Craft Background Ambience Loop 1
Sci-Fi Machine World Bright Background Ambience Loop 1
Sci-Fi Nuclear Winter Background Ambience Loop 1
Sci-Fi Ominous Alien Wind Loop 1-3
Sci-Fi Open Sea Platform Background Ambience Loop 1
Sci-Fi Radioactive Planet Ambience Loop 1
Sci-Fi Radioactive Storm Shelter Background Ambience Loop 1
Sci-Fi Radioactive Wind Background Ambience Loop 1-2
Sci-Fi Scary Subterranean Hive Nest Background Ambience Loop 1
Sci-Fi Sewers Dark Background Ambience Loop 1-2
Sci-Fi Subterranean Industrial Background Ambience Loop 1
Sci-Fi Underwater River Background Ambience Loop 1
Sci-Fi Unstable Cave Background Ambience Loop 1
Sci-Fi Unstable Ice Cave Background Ambience Loop 1
Sci-Fi Unstable Underwater Facility Background Ambience Loop 1
Sci-Fi Water Planet Deep Ocean Scary Background Ambience Loop 1
Sci-Fi Windy Barren Planet Background Ambience Loop 1
Sci-Fi Windy Cave Background Ambience Loop 1


Price $9.99

Electric Chainsaw Sound Effects Pack by Stormwave Audio

Asset Store newest packages - 2025, April 15 - 20:40
A set of 34 sound effects recorded with an electric, battery-powered chainsaw.

File Count: 34

Format: WAV, Stereo 16bit/44.1kHz

Length: 2m 43s

A set of 34 sound effects recorded with an electric, battery-powered chainsaw.


File List:


Electric Chainsaw Chain Break 1
Electric Chainsaw Cutting Wood 1-4
Electric Chainsaw Motor 1-9
Electric Chainsaw Motor Short 1-16
Plastic Chainsaw Chain Guard Cover 1-2
Plastic Chainsaw Chain Guard Uncover 1-2


Price $4.99

Cartoon characters men by 7ka

Asset Store newest packages - 2025, April 15 - 20:39
You can create any game from these characters

The collection includes:10 men


The average model has 20-25 k faces


All models have 241k triangles.


All models use one texture (as a color palette);

Resolution: 1024 px.


You can use them for game engines, to create renders

● Models are optimized for game engines, easily editable and customizable. You can also use them for animations, advertising and marketing, VR/AR, 3D printing.

● Regular updates and support.

All models use one texture (as a color palette);

Resolution: 1024 px.

You can use them for game engines, to create renders


Price $29.00

Orchestral Exploration Pack by Martin Mellström

Asset Store newest packages - 2025, April 15 - 20:01
Music pack with over one hour of professionally composed music, with themes ranging from snowy peaks to the darkest caverns, including seamless loops and multiple tension layers.
  • 69 minutes of audio
  • 29 audio files in .wav format
  • Includes both loopable and non-loopable tracks
  • Sample rate & bit depth: 44.1kHz / 16-bit
  • Royalty-free

Embark on a new journey accompanied by the Orchestral Exploration Pack.


All songs include multiple tension layers/tracks, which can be used to dynamically change the mood when entering combat, encountering enemies nearby, etc. 

The layer tracks can also be used independently of the main song loops to create completely different themes. Check out the YouTube preview for examples of the different dynamic layers.


Written with the most common themes in mind, with strings and woodwinds painting a colorful world in the Field & Forest tracks, the creeping darkness of Cave & Graveyard’s ambient and tense arrangements, and choirs paired with beautiful piano setting the (cold) stage for Snow.


Highlights:

  • 5 full songs / 29 audio files
  • Seamless loops for easy implementation
  • Multiple loopable layers per song
  • Layers can be used stand-alone
  • Professionally mixed & mastered
  • Royalty-free tracks

Made for:

Adventure games

RPG / JRPG

Metroidvania

Platformer


Inspired by:

Hollow Knight

Ori

Final Fantasy

Octopath Traveller

Celeste


Please send feedback, suggestions or collab inquiries to hello@martinmellstrom.com


Price $9.99

Stylized Lich Boss by N-hance Studio

Asset Store newest packages - 2025, April 15 - 17:52
Stylized Fantasy Boss character with options for customization for your RPG, MOBA, Action, or MMO

Development Render Pipeline: Built-In (Unity 2022) & URP (Unity 6)


Rigged: Yes

Number of Characters: 1

Number of Animations: 44


Number of Prefabs:

  • Unity 2022:
    • Mobile Prefabs: 3
    • PC Prefabs: 3
  • Unity 6:
    • URP Prefabs: 3

Triangle Count: 17,666

Vertex Count: 11,876


Number of Textures: 18

Texture Resolutions: 4096x4096


Number of Materials:

  • Unity 2022:
    • Mobile Shaders: 6
    • PC Shaders: 6
  • Unity 6:
    • URP Shaders: 6

Join the N-hance Studio community on: Discord, YouTube and Facebook


_____________________________________________________________________________

Attention:

If you plan to use our assets, including this one, in any NFT or blockchain projects, please reach out to us via email first!

_____________________________________________________________________________


Asset Description:

This package is designed for stylized / fantasy games. This asset is well detailed and can be used for First and Third Person camera.

Various color Materials for wide customization included!


Features:

  • PBR Stylized Material:
    • 6 Hand-painted Diffuse Maps
    • 2 Normal Map
    • 2 Smoothness Map
    • 2 Ambient Occlusion Map
    • 6 Emissive Maps

  • Choose between different styles:
    • Blue Lich Boss
    • Cyan Lich Boss
    • Red Lich Boss

  • ANIMATIONS LIST:
    • Idle
    • Idle01
    • Death
    • Emote_Talk
    • Emote_TalkQuestion
    • Emote_Roar
    • Jump_Start
    • Jump_Loop
    • Jump_End
    • Combat_Cast_Ready
    • Combat_Cast_Hit
    • Combat_Cast_Dodge
    • Combat_Cast_Attack
    • Combat_Cast_Attack01
    • Combat_Cast_AttackSpecial
    • Combat_Cast_AttackSpecial01
    • Combat_Stun
    • Combat_Unarmed_Ready
    • Combat_Unarmed_Hit
    • Combat_Unarmed_Dodge
    • Combat_Unarmed_Attack
    • Combat_Unarmed_Attack01
    • Combat_Unarmed_Attack02
    • Combat_Unarmed_Attack03
    • Combat_Unarmed_AttackSpecial
    • Spell_Unarmed_Ready
    • Spell_Unarmed_Hit
    • Spell_Unarmed_Dodge
    • Spell_Unarmed_Up_Start
    • Spell_Unarmed_Up_Loop
    • Spell_Unarmed_Up_End
    • Spell_Unarmed_Loop_Start
    • Spell_Unarmed_Loop_Loop
    • Spell_Unarmed_Loop_End
    • Spell_Unarmed_Cast_Forward
    • Spell_Unarmed_Cast_Up
    • Walk_Forward
    • Walk_Backwards
    • Walk_Left
    • Walk_Right
    • Run_Forward
    • Run_Backwards
    • Run_Left
    • Run_Right

Check out our Undead/Zombie-themed Assets & Bundles:


Price $34.99

Push and Pull Pack by Raisecreation

Asset Store newest packages - 2025, April 15 - 17:21
Bring realism and dynamism to your characters with this comprehensive set of 48 high-quality push/pull animations, perfect for games, films, or interactive projects.

Number of Animations: 48

Animation types (Root Motion):

A custom skeleton rig (not compatible with Unity Humanoid).

Windows: (Yes)

Mac: (Yes)

This animation pack includes 48 handcrafted animations showcasing a wide variety of push and pull interactions, including object and human interactions. Whether you're developing a game or a cinematic scene, this pack brings lifelike effort-based motion to your characters.

All animations are created and polished in Autodesk Maya, with realistic weight shifts, transitions, and reaction animations that work seamlessly in both realistic and stylized projects. (not compatible with Unity Humanoid).


🔗 Watch the animations by clicking on this link –


📧 Contact: raisecreation14@gmail.com


Why Choose This Pack?

  • 48 unique animations for seamless integration.
  • Realistic weight shifts (light/heavy objects).
  • Organized naming for easy implementation.

🔹 Animation List:


🔸 Heavy Object Animations


Anim_Heavy_idle

Anim_Heavy_In

Anim_Heavy_out

Anim_Heavy_Pull

Anim_Heavy_Push

Anim_Heavy_Push_V2

Anim_Heavy_Push_Reverse

Anim_Heavy_Push_Reverse_V2

Anim_Heavy_Push_in_Reverse

Anim_Heavy_Push_out_Reverse

Anim_Heavy_Push_to_Pull


🔸 Human Push & Pull Animations


Anim_Pull_Human_idle

Anim_Pull_Human_idle_React

Anim_Pull_Human_in

Anim_Pull_Human_in_React

Anim_Pull_Human_out

Anim_Pull_Human_out_React

Anim_Pull_Human_Pull

Anim_Pull_Human_Pull_Left

Anim_Pull_Human_Pull_Left_React

Anim_Pull_Human_Pull_Right

Anim_Pull_Human_Pull_Right_React

Anim_Pull_Human_Pull_React

Anim_Pull_Human_Push

Anim_Pull_Human_Push_React


🔸 Generic Push & Pull


Anim_Idle

Anim_Pull_Backward

Anim_Push_Forward

Anim_Push_Forward_V2

Anim_Push_Idle

Anim_Push_In

Anim_Push_Kick

Anim_Push_Left

Anim_Push_Right

Anim_Push_Out

Anim_Push_Stuck


🔸 Small Object Interactions


Anim_Small_Idle

Anim_Small_In

Anim_Small_Out

Anim_Small_Pull_Backward

Anim_Small_Push_Forward

Anim_Small_Push_Forward_V2

Anim_Small_Push_Left

Anim_Small_Push_Right

Anim_Small_Stuck


🔸 Misc


Anim_Tried


Price $10.00

Sacks pack by 32cm

Asset Store newest packages - 2025, April 15 - 17:05
A pack of bags for various uses.

Polys 17000

Textures 6

Meshes 6

Prefabs 7

A pack of sacks filled with sand, rice, seeds, etc... based in real ones. Realistic scale.


Comes with 1 set of PBR 4096p textures including Albedo, Normal, Roughness, Metalness and AO. HDRP mask included.


Suitable for farms, war scenes, warehouses, construction sites, overflow rivers, etc..


Realistic scale. Total verts 8000, polys 17000


Price $4.99

Ship Container Pack by 32cm

Asset Store newest packages - 2025, April 15 - 17:05

Polys: 120000

Prefabs: 8 (4 new, 4 rusty)

Meshes: 8

Textures: 60 (4096)

Materials: 10 materials (5 for new containers and 5 for rusty ones)

Realistic set of industrial containers. 2 fully closed with 3 materials and 2 with openable doors with 5 materials for a total of 5 materials and 8 objects.

Doors can be animated.

Comes with 2 set of textures, rusty and new. PSD included to change colors in both sets.

10 materials in total.

Comes with PBR 4096pix textures including Albedo, Normal, AO, rough, metal unity HDRP mask.

Suitable for factories, hangars, warehouses, cities, etc..

Total number of verts: 40k tris: 80k in total for closed container.

Total number of verts: 60k tris: 120k in total for openable container.


Price $6.99

Pages

Subscribe to Babel X3D aggregator