Simple Corridors by Ruslan Nazirov
Features:
Physically-Based Materials
4K Texture resolution (you can always downgrade it to 2K, 1K, etc, in the editor).
Tileable textures (you can use them on your own meshes too).
All meshes have correct size, modular and snap perfectly to each other.
Works well with baked lighting.
Tiled materials:
3 Parquet variations
3 Plaster variations
3 Bricks variations
3 Concrete variations
3 Wood variations
3 Metal variations
Number of Prefabs: 34
Number of Materials: 27
Number of Meshes: 32
Number of Textures: 54
Price $10.00
Dreamy Surreal Loops by Mote Keatinge
This package forms the perfect soundtrack for a game looking for that dreamy, shining atmosphere. With the rise in stylised, artistic, evocative games, I set out to create a modern pack for those who need that dreamy atmospheric sound at high quality and an affordable price. You're getting a pack written by an experienced professional, with intelligent composition and high production values.
Featuring four complete and distinct theme including a title theme, cut-downs, adapted loopable chunks, stings and transitions into the bargain, this is a strong all-round music package to score your game.
Listen to previews of each theme here
Whether it's puzzle, adventure, sidescroller, I wrote this to work for you.
Featuring:
- A title theme with shimmering personality
- Three full background themes, each with a different mood, including both single-play versions and easy-to-use seamless loops
- 12 different stings for endings and events
- 9 different layers and sections from one of the themes, along with 3 different transitions to make it all work.
Have a problem, love the music or just want to get in touch? Do so via my Twitter (Twitter's my favourite if you're feeling casual);
Or my email: mote@motekeatinge.co.uk (best if you're feeling official).
Price $18.00
Chick_lowpoly by Rifat_Bilalov
Model has 1642 tris ( midle - 1292 tris, low - 688 tris). Model has diffuse and normal maps (all maps 1024x1024).
13 animations: eat_start, eat, eat_end, walk, run, sleep_start, sleed_idle, sleep_end, hit (front, left, right), idle 1-2.
Animation show in scetchfab.
Price $8.00
Hue Shift (HSV) shader for Sprites & UI by Martin Nerurkar
A simple way to make more of your sprites and graphics! Change hue, saturation and value on the fly! Change the entire sprite, or limit the changes by alpha or hue range.
Interactive DemoFeatures:
- Use color of Sprite and Image to adjust hue, saturation and value
- Mask change by alpha
- Mask change based on texture hue
- Multi-compile shader for improved performance
Get it now at the early access beta discount price.
Price $6.00
Landscape Generator 2D by Untitled Tools
The 2D version of the Untitled Tools Lanscape Generator package.
Features Include:
- 2D terrain generation
- Terrain texture generation and scaling
- Procedural placement of objects on the terrain
- Entirely seed-based generation
- Option to add a terrain topper (not shown in any images yet).
Price $5.00
CalculatorX - Math Game - Complete Game Template by TheXpertGuy
Price $10.00
Pedestrian Streets of Moscow: Stereo 2.0 by Hand Rolling
⁃ All Sounds Recorded & Processed in 48 kHz, 24-bit
⁃ 27 High Quality Stereo WAV Files
⁃ XLS Metadata included in the archive
⁃ Carefully selected and prepared
Price $27.00
SIP - Script Intelligence Pack by cf/x software AG
Using SIP can make complex tasks such as integrating third-party assets or synchronising multiple object's actions simple and - dare we say? - fun. SIP enables new critical functionality that can multiply your coding ability and efficiency, helps clean up your code, and can make debugging your games much easier. SIP contains powerful Prefabs that can add this capability to third-party assets just by dropping them on the object – a much cleaner solution than adding scripts as components to an object in Editor.
SIP requires a beginner's level of scripting expertise to use, and greatly increases in usefulness with your experience. To be able to use the pack you must know how to add a prefab to an object, and have a general understanding of what the Update() method in a script is for. If your scripting know-how extends to variables and methods, buckle up: you're in for a great ride!
Backbone of the pack is a tiny object that you drop into your scene that facilitates the ability of your scripts to talk to each other - even if they don't know anything about the script they are talking to. Your scripts gain this ability by changing a single word - from there on they have access to powerful features:
- broadcast information to other scripts (e.g: "Enemy Sighted")
- control swarm behaviour
- enable and disable scripts via notification
- dissolve meshes via notification (SIP includes two dissolve shaders for this purpose)
- react to specific broadcasts (e.g. activate your GameObject upon receiving "Enemy Sighted")
- schedule broadcasts (e.g. send a "Time's Up" broadcast in 30 seconds)
- query scripts for information ("Give me All Enemy Tanks")
To access this, you need to do three simple steps:
- Implement an OnNotification() method in your script. This method is invoked whenever another script wants to talk to it
- tell SIP what you want to be notified of by invoking “subscribeTo()”
- to talk to other scripts, invoke "SendNotification()"
Additionally, SIP provides a powerful “Query” feature that allows your scripts to broadcast a question, and receive answers from all scripts that have something to say. With this, you can easily implement otherwise complex functionality like Multi-Tags (also provided as prefab). Now, to curb your enthusiasm: with great scripting power comes a small price: to use Queries effectively, you must know what a List variable type is and how to use it.
Speaking of Prefabs, we have included a host of Prefabs that you can attach to existing assets that enable them to respond to notifications and queries – without you ever having to write a single line of code. Better yet, our scripts attach themselves to your objects at runtime only (as opposed to using Unity Editor to attach a script as a Component). This makes integration much cleaner, and easier to manage. You no longer must hunt through hundreds of objects to see if you added a script - the scene hierarchy always shows you any notification or query prefab you added. Using the ability to talk to each other, we have built a number of prefabs for you that provide drag-and-drop capabilities to any object, for example:
- Be notified when an Animation State changes (Enter/Exit/Stay/IK/Moved)
- Be notified when an Audio Source changes state (Started/Finished playing a clip)
- Be notified when an object (e.g. a third-party asset) collides with another object – without needing to change that asset’s code
- A (repeating) timer
- Be notified when a particle system collides with another object
- Input relay
In short, SIP allows you to easily do things that otherwise are not-easy-indeed, such as:
- integrating existing assets
- Messing with 'delegates', callbacks or 'Actions' (our notification manager encapsulates all that for you)
- Exchange information between scripts without knowing if the exist or what they are
- Schedule consecutive tasks
- Synchronizing scripts that control activity
- ‘Role-call’ like behavior when you need to corral multiple objects with specific attributes that can change during runtime
- Clean up an ugly, hard to maintain central Update() method that mix state polling and decision making (e.g. looking if variables change) with execution (e.g. animating a shader)
Given all of its power, SIP is tiny, with a core that is carefully engineered to minimize both memory and performance footprint. It uses less space than a single 512x512 texture, and using the notification mechanism is much less expensive (performance-wise) than using Update() or Invoke(). More importantly, using OnNotification() instead of actively observing an actor during Update() cleans up your code and makes it faster, easier to export to other projects, and more readable.
NOTE:
SIP is not a tool for managing mobile/phone notification alerts.
Price $50.00
Earth HD 64K by Stagit East
Featuring:
Textures
- 64K Color maps
- 64K Specular maps
- 32K Normal maps (64K download link available in package)
- 32K Night maps (64K download link available in package)
- 32K Cloud maps (64K download link available in package)
- 16K Cloud normal maps (64K download link available in package)
Geo Information
- All countries including borders, ISO codes, population
- 7000+ City locations including population, rank, state, country, ISO Codes
Additional content
- 1 detailed HD Milky Way skybox (6 x 4096px)
- 1 adjustable lens flare
Shaders
- Earth ground shader
- Atmosphere shader
- Cloud shader
Important Notes:
- There is currently no support for 2.0 shader model GPU Graphic cards/DX9
- Geo information is currently under development, however this package contains all country/city info and basic functions how to use it.
- While i have spend over 100 hours adjusting textures (mostly the clouds) it is still possible that there are problems with it. Contact me if you find those.
- This is a very large package (1.9GB), importing this can take over an hour because of the textures
Price $10.00
Ghost VR Hands (Transparent) by Asstronaught
Pack contains next left and right hands animations:
- Idle
- Fist
- Fist Hold
- Grab Vertical
- Grab Vertical Hold
- Grab Horizontal
- Grab Horizontal Hold
- Grab Big
- Grab Big Hold
- Grab Small
- Grab Small Hold
- Finger
- Finger Hold
Price $19.99
Simple Sanctuary - uMMORPG Addon by Critical-Hit!
uMMORPG is required for this Addon to work!
---
"Simple Sanctuary" grants your players an extra boost while being offline! Define one or more areas inside your scene where players can recover and gain stats while being offline.
Players recover when logging out of the game while located inside a Sanctuary.
* Recover Health while offline.
* Recover Mana while offline.
* Gain Experience while offline (adjustable).
* Gain Gold while offline (adjustable).
* Gain Coins while offline (adjustable).
You can mix and match the recovery settings or disable some of them as you wish. Easily create a "Inn Zone" where players recover health/mana while being offline. You can also create a "Goldmine" where players gain gold while logged-out. Or grant them bonus exp when logging out of the game while located at the "Library".
Price $5.00
uMMORPG - Physics Movement by Cunning Fox Studio
Which means, that it requires uMMORPG in order to work. Thank you for understanding.
What do you get? This enables Physics-Based movement (more akin to WoW) so that you may move using the WASD keys and Space to jump over obstacles. This also enables Sprinting and Crouching.
This add-on will also be improved upon, any suggestions are welcome.
Installation notes can be found at the uMMORPG add-on forums.
Price $12.50
Android Etcetera Plugin by prime31
Price $65.00
Animated Pets and Farm Animals Pack by HONETi
Contains:
• 6 animals x 5 animations
• 48 textures (512x512)
• 48 prefabs
• environment is not included!
Prefabs:
• 8 cats
• 8 dogs
• 8 chickens
• 8 cows
• 8 sheeps
• 8 pigs
5 animations per animal:
• walk
• run
• idle 01
• idle 02
• idle 03
Other packages:
• 30k Animated Fantasy Characters
• 20k Animated Fantasy Female Characters
• Full Fantasy Game Set / Bundle
• ...And many, many more
Optimized for mobile platforms and browsers.
DEMO | OUR ASSETS | SUPPORT | ABOUT US
Price $50.00
Low Poly Randomizer by 2Ginge
Features:
• A low poly mesh randomization script to handle all randomization functionality
• Low poly terrain, tree, trunk, rock, bush, and grass example meshes
• 2 demo scenes set up for easy testing/ familiarization with the tool
• Easy saving functionality for generated meshes
Documentation:
View Documentation
Support Email: contact@2ginge.com
Web: www.2ginge.com
Price $15.00
Stylized Brick (Package №2) by Stav26
Technical Details:
1) Number of material: 20
2) Texture size: (2048x2048)
3) The number of texture base color (alpha mask of roughness): 20
4) The number of normal map: 20
5) The number of mask (roughness, metalness, ambient occlusion): 20
6) Intended platform: all (Windows, Mac, PS4, IOS, Android, Xbox One, Oculus)
7) Platform Tested: Windows
8) Documentation included: Not needed
Price $15.00
Low Poly Wild West Environment by YGS Assets
Take a look at the screenshots to see all the models.
With the modular pieces you can build lots of different combinations of buildings, you will find 2 of them in the prefabs which.
Demo scene included, not a complete level though, the scene included is the one used to take the screenshots.
Price $5.00