Asset Store newest packages

Subscribe to Asset Store newest packages feed Asset Store newest packages
The newest packages in the Unity Asset Store.
Updated: 43 min 31 sec ago

ARCADE: Street Tuned Cars by Mena

2023, February 13 - 13:42
⭐ This is a 3D asset which contains the fastest tuned cars that have ever raced on the streets!.

Number of textures: 7.

Texture dimensions: 512px * 512px, 1024px * 1024px.

Polygon count: 3100 - 5300 triangles per vehicle.

Number of meshes: 20.

Number of prefabs: 40.

UV mapping: Yes.

LOD: No.

Types of materials: Standard.

🏁 Recharge your NOS, buckle up and win a race at midnight with these street tuned cars!


Detailed information:


  • It contains 20 TUNED CARS.
  • 5 colors for each vehicle (100 vehicle variations).
  • Prefabs with/without colliders included.
  • Vehicles use 2 materials.
  • Texture atlas (512px * 512px).
  • Perfect for third-person racing games and top-down games.
  • It works with any car controller.

This asset also includes the following extras: Barriers, cones, containers, street lights, tollbooth, warehouse, lift truck, mail truck and skyboxes.


Complete your ARCADE collection:


Any question please contact: contact@mena-assets.com


Price $50.00

Monster_Wolf1 by FarXeyM

2023, February 13 - 13:29
Low-poly model for your game

PBR textures(Metallic Shader)

PBR textures.

-Albedo

-AO

-Metallic

-Normal

-Emission

(texture set 4096x4096)


Faces: 15938

Verts: 15874

Tris: 30719

Low-poly model of the charaster Monster_Wolf1

Suitable for games of different genre: RPG, Hack and Slash RPG, strategy


Textures 4096x4096


Rigged with Epic Skeleton


Easy Animations retarget in Unity. Epic Skeleton/Humanoid rig.


Faces: 15938

Verts: 15874

Tris: 30719


*Parts of this model use a two-sided shader


Price $44.99

Monster Reaper1 by FarXeyM

2023, February 13 - 13:26
Low-poly model for your game

PBR textures(Metallic Shader)

PBR textures:

-Albedo

-AO

-Metallic

-Normal

-Emission

(texture set 4096x4096 and 2048x2048)


Faces: 10044

Verts: 10146

Tris: 19654

Low-poly model of the charaster Monster_Reaper1

Suitable for games of different genre: RPG, Hack and Slash RPG, strategy


Textures 4096x4096; 2048x2048


Rigged with Epic Skeleton


Easy Animations retarget in Unity. Epic Skeleton/Humanoid rig.



Faces: 10044

Verts: 10146

Tris: 19654


Price $29.99

Observed [Source] by Zappy

2023, February 13 - 13:01
Observed is a collection of scripts that allows you to easily create and use observable types in your Unity projects.

Introducing the Observed - a collection of scripts that allows you to easily create observable variables, observable collections, and observable dictionaries in your Unity projects.


This version is with the source code, if you don't need the source code check out the more affordable version here.


Online Documentation

Forum


Well Tested

As the developer of the Observed asset, I have put in a great deal of effort to ensure its reliability and robustness. I have created over 100 unit tests to cover a variety of scenarios and conditions, so you can trust that the observable variables and collections in the Observed asset will perform consistently and smoothly in your Unity projects.


Use Cases

Here are a few practical applications for some of the classes that are included in this asset:

Health System

Inventory Management System

Tracking Player Scores and Level Progress

Message Queue System For Multiplayer Networking


Observed<T>

Observed variables are variables that can notify subscribers when their value changes. This can be useful in game development for tracking and responding to changes in various game states or variables.

For example, an observed variable could be used to track the player's health, the progress of a loading screen, or the score of a game. Subscribers can be set up to listen for changes to the observed variable and take some action in response, such as updating a UI element or triggering some other event.


ObservedCollection<T>

ObservedCollection is a collection that can notify subscribers when its contents change, allowing you to track changes to the collection and respond to them in your code. Examples of how you might use ObservedCollection in game development include using it to track the state of a list of items in a UI or inventory system, subscribing to changes in an observed collection to update a UI or other system when the collection changes, using the ObservedCollection class's built-in methods such as Add, Remove, and Clear to manipulate the collection and automatically notify subscribers of changes, and iterating over the collection and accessing its items using the foreach loop or LINQ methods, just like you would with a regular collection.


ObservedDictionary<T>

ObservedDictionary is a class that allows users to subscribe to changes made to the dictionary. This can be useful in scenarios where the user wants to be notified when an item is added, removed, or updated in the dictionary.


ObservedQueue<T>

ObservedQueue is a queue that can notify subscribers when its contents change, allowing you to track changes to the queue and respond to them in your code.

A queue is a linear data structure that follows the "first-in, first-out" (FIFO) principle. It is a collection of elements in which the addition of new elements happens at the back of the queue, and the removal of existing elements occurs at the front of the queue. This makes a queue a useful data structure for tasks that need to be processed in the order that they are received.

In game development, queues can be useful for tasks such as managing the order in which units move in a turn-based game, processing events in the order that they are received, or managing a list of actions that need to be performed in a specific order. Queues can also be used to store data temporarily before it is processed, such as incoming network packets in an online game.


ObservedSet<T>

ObservedSet is a set that can notify subscribers when its contents change, allowing you to track changes to the set and respond to them in your code.

A set is a collection of unique items, meaning that it does not allow for duplicates. Sets can be useful for game development in a variety of situations where uniqueness is important, such as tracking unique items in an inventory or unique player IDs in a multiplayer game. Sets can also be useful for quickly checking if an item is already present in the collection, as they typically have fast lookup times due to their use of hashing.


ObservedHashSet<T>

ObservedHashSet is a class that extends the .NET System.Collections.Generic.HashSet<T> class and adds the ability to notify subscribers when the set is modified. This can be useful if you want to track changes to the set and have other parts of your code respond to these changes.

Like a regular hashset, ObservedHashSet is a collection of unique items that does not allow for duplicates. It uses hashing to provide fast lookup times for checking if an item is present in the set. In addition to the standard methods provided by the HashSet class, such as Add, Remove, and Clear, ObservedHashSet also includes methods for subscribing and unsubscribing to notifications of set changes, as well as methods for clearing subscriptions and notifying subscribers of added and removed items.

ObservedHashSet can be useful for game development in a variety of situations where uniqueness is important, such as tracking unique items in an inventory or unique player IDs in a multiplayer game. It can also be useful for quickly checking if an item is already present in the set and for responding to changes in the set in other parts of your code.


ObservedBitArray

An observed bitarray is a class that wraps a regular .NET System.Collections.BitArray and adds the ability to notify subscribers when the bitarray is modified. This can be useful if you want to track changes to the bitarray and have other parts of your code respond to these changes. Overall, the main benefit of using an observed bitarray is that it provides a convenient way to track and respond to changes in a bitarray, which can be useful for various purposes in game development.

One possible use case for an observed bitarray is to track the state of various game options or settings. For example, you could use an observed bitarray to track which options in a menu are selected, which achievements have been unlocked, or which leaderboard scores have been achieved.

It could also be used for optimizing online games to reduce the amount of data that is sent over the network. If you are using a BitArray to represent a state that needs to be synchronized between clients and the server in an online game, using ObservedBitArray would allow you to easily track and send changes to the bit array over the network.


ObservedSortedList<TKey, TValue>

ObservedSortedList is a class that allows users to subscribe to changes made to a SortedList, a collection that stores key-value pairs in a sorted order according to the keys. This can be useful in scenarios where the user wants to be notified when an item is added, removed, or updated in the SortedList. The ObservedSortedList class provides a convenient way to track and respond to changes in a SortedList, which can be useful for various purposes in game development.

One possible use case for ObservedSortedList is to track the state of various game objects or UI elements in a sorted manner. For example, if you have a sorted list of enemies in a game, you could use ObservedSortedList to track the health, position, or other properties of each enemy and have other parts of your code respond to these changes. This could be useful for implementing game mechanics such as spawning new enemies, updating the AI of enemies, or displaying the status of enemies in a UI.


ObservedSortedSet<T>

A sorted set is a collection of items that are stored in a specific order, based on their value. Sorted sets are useful for scenarios where you need to store items in a specific order and quickly retrieve items based on their value.

It has all the same functionality as a regular sorted set, but it also has the ability to notify subscribers of changes made to the set through the Subscribe and Unsubscribe methods.


ObservedSortedDictionary<TKey, TValue>

ObservedSortedDictionary is a class that extends the .NET SortedDictionary class to add the ability to notify subscribers when the dictionary is modified. This can be useful if you want to track changes to the dictionary and have other parts of your code respond to these changes. ObservedSortedDictionary is particularly useful when you need a dictionary that is always sorted based on its keys, as it provides a convenient way to track and respond to changes in a sorted dictionary, which can be useful for various purposes in game development.

ObservedSortedDictionary can be used to store data that needs to be accessed in a specific order, such as high scores or other ordered lists of data.


ObservedStack<T>

ObservedStack is a stack implementation that allows you to subscribe to changes made to the stack. When an item is added or removed from the stack, all subscribed callbacks are notified with the item and a ChangeType indicating whether the item was added or removed.

They can be useful for implementing features such as leaderboards or ranking systems, where the order of the items is important.


ObservedBinaryFile

The ObservedBinaryFile class allows you to subscribe to file change events for a specific file. It monitors the file for changes, and notifies subscribers when the file is changed, created, deleted, moved, or renamed.


ObservedTextFile

The ObservedTextFile class allows you to subscribe to file change events for a specific text file. It monitors the file for changes, and notifies subscribers when the file is changed, created, deleted, moved, or renamed.

Upgrade your Unity projects with the power of observables - try the Observed asset today!


Price $28.50

Shelter Game Sound by Sound Works 12

2023, February 13 - 12:57
Shelter Game Sound contains 300 different shelter sounds and more.

Audio file types: wav

Sample rate: 96khz

Bit depth: 24bit

Loopable: Some

Additional: Stereo

Shelter Game Sound contains 300 different shelter sounds and more.


This library contains various ambience sounds,

user interface sounds, as well as various shelter sounds and interactions with objects inside it.

This sound library is perfect for voicing your post-apocalyptic project and not only.



Contains Sounds:


  • Ambience - 20 sounds
  • SFX 209 - sounds
  • User Interface - 71 sounds

Price $20.00

Male Mage (Fiery Resolve) - Fantasy Job Class Character Set by Metaverzero

2023, February 13 - 10:12
Get the 2D Male Mage Fantasy Job Class Character Set for high-quality game assets including character portraits, close-ups, full body illustrations, and fantasy-themed images.

TECHNICAL SPECIFICATIONS

2D character game assets perfect for fantasy / RPG / adventure / card games. See details below.


FULL BODY (33 items)

512x1024 PNG files

CLOSE-UP (27 items)

512x768 PNG files

ILLUSTRATION (12 items)

1024x1024 PNG files

SPRITESHEET (11 items)

960x960 PNG files

Introducing the 2D Male Mage Fantasy Job Class Character Set, a collection of high-quality game assets featuring a smart-looking mage with orange tone hair, red orange eyes, and a magical cloak. This set includes a variety of character portraits, close-ups, full body illustrations, and more, all designed to bring your fantasy games to life.

Features:

  • Character Portraits: Full-face view of the mage, showcasing his orange hair and red orange eyes.
    Various facial expressions, including neutral, happy, sad, and angry.
    High-resolution images suitable for use in-game or in promotional materials.
  • Close-Up: Detailed views of the mage's face, showing off his magical cloak and scepter.
    Different angles and poses, including front, side, and back views.
    Suitable for use in character select screens or in-game dialogue scenes.
  • Full Body: Full-length views of the mage, showing off his magical cloak and scepter.
    Different angles and poses, including front, side, and back views.
    Suitable for use in character select screens or in-game cutscenes.
  • Illustrations:Fantasy-themed illustrations featuring the mage in various settings and situations.
    High-quality images suitable for use in promotional materials or as backgrounds for in-game menus.

All assets in this set are provided in PNG format with transparent backgrounds, making it easy to incorporate them into your games. Whether you're creating a fantasy RPG, a tactical strategy game, or anything in between, the 2D Male Mage Fantasy Job Class Character Set has everything you need to bring your vision to life.



Price $8.00

Ploy - Student by Imgen

2023, February 13 - 09:38
PBR character pack designed for general interactive applications and game engines, supported humanoid rigging system, facial blend-shape, physic-bone, and different material options.

Model.

  • 3 main character models are included.
  • Triangles 15,000 - 30,000 depending on character type and accessories.
  • 3 shader-based color hairstyles.
  • 6 eye textures with several adjustable properties.
  • 6 blend-shape animations included (normal, happy foxy, sad, stun, angry)

Please note.

  • Promo pictures and videos were rendered through Unity 2021.1.15f1, URP pipeline.
  • No third-party animation, physics plugin, or scripts are included.

Ready to be used out of the box!

  • New hairstyles and character accessories will be updated for free!

General detail.

  • Humanoid rigging supported.
  • Generic facial blend-shape supported for general expressions
  • Physic bone supported for character hairs, breasts, and bottoms (third-party package).

Materials.

  • No custom shader is required.
  • Contained different types of textures, materials, and color variety.

Optional

  • This character was based on Imgen Female Gen 4 model. Most of the character parts can be used with other same-generation 4 female characters.
  • A demo scene contains all of the characters and scene setting.
  • Documents and customer support files.

Price $14.99

Cartoon White Lion Animated 3D Model by 3D-Disco

2023, February 13 - 09:35
Cartoon White Lion Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.

Number of textures: 5 (Color, Metallic, Roughness, Normal, AO)

Texture dimensions: 2k

Polygons: 7,218

Vertices: 6,884

UV mapping: Yes

Various: PBR, Geometry: Polygon mesh, Unwrapped UVs: Mixed

Cartoon White Lion Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.


Technical details:


  • Polygons: 7,218
  • Vertices: 6,884
  • Textures: Color, Metallic, Roughness, Normal, AO
  • All textures are 2k resolution.
  • The model is rigged and animated.
  • 6 animations are included: idle, walk, run, talk, sing, dance. All animations are full cycles.

You can find the model discounted in this pack: https://assetstore.unity.com/packages/3d/characters/animals/mammals/cartoon-lion-animated-3d-models-239468


Price $99.00

Cartoon Silver Fox Animated 3D Model by 3D-Disco

2023, February 13 - 09:35
Cartoon Silver Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.

Number of textures: 5 (Color, Metallic, Roughness, Normal, AO)

Texture dimensions: 2k

Polygons: 10,284

Vertices: 9,863

UV mapping: Yes

Various: PBR, Geometry: Polygon mesh, Unwrapped UVs: Mixed

Cartoon Silver Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.


Technical details:


  • Polygons: 10,284
  • Vertices: 9,863
  • Textures: Color, Metallic, Roughness, Normal, AO
  • All textures are 2k resolution.
  • The model is rigged and animated.
  • 6 animations are included: idle, walk, run, talk, sing, dance. All animations are full cycles.

You can find the model discounted in this pack: https://assetstore.unity.com/packages/3d/characters/animals/mammals/cartoon-fox-animated-3d-models-pack-239643


Price $99.00

Cartoon Lion Animated 3D Model by 3D-Disco

2023, February 13 - 09:35
Cartoon Lion Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.

Number of textures: 5 (Color, Metallic, Roughness, Normal, AO)

Texture dimensions: 2k

Polygons: 7,218

Vertices: 6,884

UV mapping: Yes

Various: PBR, Geometry: Polygon mesh, Unwrapped UVs: Mixed

Cartoon Lion Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.


Technical details:


  • Polygons: 7,218
  • Vertices: 6,884
  • Textures: Color, Metallic, Roughness, Normal, AO
  • All textures are 2k resolution.
  • The model is rigged and animated.
  • 6 animations are included: idle, walk, run, talk, sing, dance. All animations are full cycles.

You can find the model discounted in this pack: https://assetstore.unity.com/packages/3d/characters/animals/mammals/cartoon-lion-animated-3d-models-239468


Price $99.00

Cartoon Grey Fox Animated 3D Model by 3D-Disco

2023, February 13 - 09:35
Cartoon Grey Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.

Number of textures: 5 (Color, Metallic, Roughness, Normal, AO)

Texture dimensions: 2k

Polygons: 10,284

Vertices: 9,863

UV mapping: Yes

Various: PBR, Geometry: Polygon mesh, Unwrapped UVs: Mixed

Cartoon Grey Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.


Technical details:


  • Polygons: 10,284
  • Vertices: 9,863
  • Textures: Color, Metallic, Roughness, Normal, AO
  • All textures are 2k resolution.
  • The model is rigged and animated.
  • 6 animations are included: idle, walk, run, talk, sing, dance. All animations are full cycles.

You can find the model discounted in this pack: https://assetstore.unity.com/packages/3d/characters/animals/mammals/cartoon-fox-animated-3d-models-pack-239643


Price $99.00

Cartoon Fox Animated 3D Model by 3D-Disco

2023, February 13 - 09:35
Cartoon Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.

Number of textures: 5 (Color, Metallic, Roughness, Normal, AO)

Texture dimensions: 2k

Polygons: 10,284

Vertices: 9,863

UV mapping: Yes

Various: PBR, Geometry: Polygon mesh, Unwrapped UVs: Mixed

Cartoon Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.


Technical details:


  • Polygons: 10,284
  • Vertices: 9,863
  • Textures: Color, Metallic, Roughness, Normal, AO
  • All textures are 2k resolution.
  • The model is rigged and animated.
  • 6 animations are included: idle, walk, run, talk, sing, dance. All animations are full cycles.

You can find the model discounted in this pack: https://assetstore.unity.com/packages/3d/characters/animals/mammals/cartoon-fox-animated-3d-models-pack-239643


Price $99.00

Cartoon Arctic Fox Animated 3D Model by 3D-Disco

2023, February 13 - 09:35
Cartoon Arctic Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.

Number of textures: 5 (Color, Metallic, Roughness, Normal, AO)

Texture dimensions: 2k

Polygons: 10,284

Vertices: 9,863

UV mapping: Yes

Various: PBR, Geometry: Polygon mesh, Unwrapped UVs: Mixed

Cartoon Arctic Fox Animated 3D Model is completely ready to be used in your games, animations, films, designs etc.


Technical details:


  • Polygons: 10,284
  • Vertices: 9,863
  • Textures: Color, Metallic, Roughness, Normal, AO
  • All textures are 2k resolution.
  • The model is rigged and animated.
  • 6 animations are included: idle, walk, run, talk, sing, dance. All animations are full cycles.

You can find the model discounted in this pack: https://assetstore.unity.com/packages/3d/characters/animals/mammals/cartoon-fox-animated-3d-models-pack-239643


Price $99.00

Fast Mobile Blur - URP by Isle of Assets

2023, February 13 - 09:14
This asset quickly and efficiently blurs the background behind the UI on mobile devices.

Supported platforms: Android/IOS/PC

Number of VFXs: 1

Custom shaders: 1

Documentation: Included

📌 Highlighting important interface elements is one of the main tools for improving user perception. Switching attention can be done in different ways from the smooth escape of the buttons over the edges of the screen to darkening the background. On the one hand, it reduces the contrast of background elements, and it becomes harder for the eye to catch on to it. On the other hand, blurring has a subconscious effect when the image becomes out of focus and we perceive it differently.


📌 The asset was developed for mobile devices, so special attention was paid to the absence of performance problems. Despite this, the blur turns out to be of high quality and its adjustment is designed to establish a balance between the quality of the blur and high performance.


Features:

  • Easy to use;
  • Customizable;
  • Fast algorithm;
  • Masking support;
  • Blur control from scripts;
  • A ready-made set of 12 masks.

📄 Documentation.pdf


🎮 DemoApp.apk


🎮 DemoApp.exe


Price $15.00

6 helicopters in 1 package by Mehdi Rabiee

2023, February 13 - 08:47
6 helicopters in 1 package

*Number of textures:6.


*Texture dimensions:4096*4096.


*Polygon count of [Helicopters pack].


*Minimum polygon count:17000.


*Maximum polygon count:15000.


*Number of meshes/prefabs:1.


*Rigging:No.


*Animation count:No.


*Animation type list:No.


*UV mapping: No.


*LOD information (0).


*Types of materials and texture maps (PNG).

* 6 helicopters in 1 package


*You can use these models in any game and project.


* The interior of these models is designed in a simple way that is low poly and can be used for any game.


* This model is made with order and precision.


*Separated parts (.Body_Main Rotor_Tail Rotor).


* Low poly.


*1 helicopter with 6 textures.


*Number of textures:6.


*Texture dimensions:4096*4096.


*Polygon count of [Helicopters pack].


*Minimum polygon count:17000.


*Maximum polygon count:15000.


*Number of meshes/prefabs:1.


*Rigging:No.


*Animation count:No.


*Animation type list:No.


*UV mapping: No.


*LOD information (0).


*Types of materials and texture maps (PNG).


Price $59.00

Sandvik Drill Rig Underground by Lowpoly_Master

2023, February 13 - 07:58
Lowpoly high resolution model of the Two-boom drill rig Sandvik DD321.
Modeled correctly scaled from blueprints, enough detail for close-up renders. Semi-detailed interior dashboard, Seats, Handle are modeled.
Textures are very detailed so it makes this model good enough for close-ups.
Features:
- 4 Color and can be easily modified and have been named with a logical criteria.
- Model is correctly divided into main part and Wheels
- Polys:18346 Tris:40195 verts:22411
- Pivot points are correctly placed to suit animation process.
- MAP size _4096x4096
- Light Texture separate with size 512x512
- Model completely unwrapped.
- Model is fully textured with all materials applied.
- Pivot point is correctly placed in world zero.
Thanks and do not forget to rate. Good luck.
if you find any correction and additional technical details feel free to contact me..
lowpolymaster@gmail.com
Price $40.00

(URP)Simple Toon Shader by Indie Game Helper

2023, February 13 - 07:42
Cute shader suitable for cartoon, casual games

Custom shader: 1

Its a cute shader suitable for cartoon, casual games.

You can adjust 10+ parameters to achieve ranged result.


Models used in the demo are from a free assets called Kawaii Slimes



Price $0.00

3D Space Lowpoly Models by WDii

2023, February 13 - 07:26

This package includes ready-to-use prefabricated and low polygon models.

All model in the list are use one texture.


1. Pack Detail

- all model mesh count : 51,381

- model count : 90

- texture size : 256x256


2. Model List

- antenna A, B

- fan

- fan Station

- lever

- mechanical Eye

- moon Small

- oil Drum A, B, C

- planet 0 ~ 10

- prop 0 ~ 49

- rocket

- satellite A, B, C

- space Ship

- space Suit A, B

- steam PipeA, B

- telescope

- UFO


3. Material List

- Unity's Basic Materials.

- object_M, unlit_M


4. Compatible Unity version

- All Unity version.

- Only model files excluding prefabs are compatible with the versions below.

However, you need to reapply the material from the model file.

- You can use it by applying the texture provided in Unity's default Material

ex) Legacy Shader/Diffuse. Unlit/Texture


5. Model use guide

- User need to adjusting the model to their set environment.

- All model does not include animation. Characters, animals, etc. are immovable sculptures.


6. License

The following custom license applies to this asset in addition to the Asset Store End User License Agreement.

END USER will be prohibited from using the asset license for the following products.


- Creation of Non-Fungible-Tokens (NFT) and/or use in Blockchain based projects or products.

- Creation of content for Metaverse related and/or Game creation software and products.

- 3D printing for commercial use.


Price $6.99

Ultrasound machine USM Medical Hospital Clinic Equipment by Human Anatomy

2023, February 13 - 07:13

Number of textures: 8

Texture dimensions: 4096x4096

Polygon count: 7081

Number of prefabs: 1

Not rigged/animated

UV mapping: Yes

Types of materials: PBR

Ultrasound machine USM Medical Hospital Clinic Equipment 3d model assets from 10 years experienced game developer

This asset works great for mobile,vr,ar and low poly games.

Pbr textured: Color, Normal, Specular, AO

Texture sizes: 1024x1024, 2048x2048, 4096x096

7081 polys


3 uv sets:

1) base

2) keybord, pistol

3) monitor screen


Price $29.00

2D_Object_Boxes Set by kazuto777

2023, February 13 - 06:58
2D_Object_Boxes Set. All images are in PNG format. 12 types of wooden box assets. *Vertical size: about 500px

2D_Object_Boxes Set.

All images are in PNG format.


12 types of wooden box assets.

*Vertical size: about 500px


・Wooden box Lv1

・Wooden box Lv2

・Wooden box Lv3

・Wooden box Lv4

・Wooden box Lv5


・Wooden box “Dangerous”

・Wooden Box “Bullet”

・Wooden box “Recovery”

・Wooden Box “Heart”

・Wooden box “Bomb”

・Wooden Box “Gear”



Price $7.00

Pages