Skip to main content

Posts

Showing posts from December, 2014

Game Warriors Behind The Scene

An Indies team called Game Warriors running by Santhosh Raj from India. The team has 6 members. Game warriors currently working on a game "Wonder Race" and soon it will be available to play. Here are the guys with their job. 1. M.Santhosh Raj (T/L) Game Developer Unity 3D, C, JavaScript. 2. K.Chalpathi Vfx Artist Unity 3D, Maya. 3. B.Sudhakar Rao Modeling and Animation Unity 3D, 3Ds Max. 4. Md.Ijaz khan Lighting and Texturing Unity 3D, Z – Brush. 5. B.Chakradhar Rigging Maya, Blender 3D. 6. V.Anantha Krishna Modeling and Texturing Maya, 3Ds Max. Submit your team details submit now!

Simple Easing Functions for Unity

Super simple, fast and easy to use tweening functions for unity which incorporates optimised Robert Penner's equations. Functions taken from https://github.com/sole/tween.js/blob/master/src/Tween.js and converted for unity by  Fonserbc  /  https://gist.github.com/Fonserbc/3d31a25e87fdaa541ddf#file-easing-cs -------------------------------------------- using UnityEngine;   /* * Functions taken from Tween.js - Licensed under the MIT license * at https://github.com/sole/tween.js */ public class Easing {   public static float Linear ( float k ) { return k; } public class Quadratic { public static float In ( float k ) { return k*k; } public static float Out ( float k ) { return k*( 2f - k); } public static float InOut ( float k ) { if ((k *= 2f ) < 1f ) return 0.5f *k*k; return - 0.5f *((k -= 1f )*(k - 2f ) - 1f ); } }; public

Unity Crashes on startup- A quick Fixes

Sometimes it happens that you try to open unity editor but it goes bug report screen or crash. By default, Unity always loads up the last project that you edited. 1. You can skip this bug screen by holding down "Alt" immediately after unity starts, and you'll get an option to select a different project or start a new project. 2. If this doesn't solve the error you should check you drivers this happens with lots of users reported. Start > Run > "DXDIAG" and hit enter Uninstalling the HID drivers helped many users. 3. Renaming the project which is crashing also solve, but start project as a blank. 4. Uninstall any third party application you installed for unity. If the problem still continue please contact Unity Support: support@unity3d.com or report a bug. Am I missing something? Suggest me in comments!

COLORED GAMES Behind The Scene

Indie Studio Name: COLORED GAMES Colored Games is the collaborative Group of extremely talented Professionals from backgrounds like Artists, software engineers, Computer Engineering, Animators, video game Designers, Game Developers and Social Media. You can expect Services for all Preferred platforms. They continue to do research and stay engaged to help make the recommendations up-to-date On-Board. They are usually offering services in- Game Development - Mobile, Web, Social, Desktop. Interactive Technologies - Leap Motion Applications, Game Pad Controlled Applications. Animated Video Production - 3D Animated Video Production for Games and Movies. Game We are Working On iNCREDIBLE jOGGER iNCREDIBLE jOGGER is an adventure infinite runner game under development and most of the part has already been done. Now we are adding some social media sharing capabilities and then we are ready to go initially for Google Play and Amazon followed by IOS and Windows in a fu

Unity Remove Component or Game Object

The way to remove game object you want is simple easy what you need to add is the piece of function and your object. The public static function Destroy() is a key its Removes a gameobject, component or asset.  reference Examples: // Kills the game object Destroy (gameObject); // Removes this script instance from the game object Destroy (this); // Removes the rigidbody from the game object Destroy (rigidbody); // Kills the game object in 5 seconds after loading the object Destroy (gameObject, 5); // When the user presses Ctrl, it will remove the script // named FooScript from the game object function Update () { if ( Input.GetButton ("Fire1") && GetComponent (FooScript)) Destroy (GetComponent (FooScript)); }

Buy Google Cardboard Kits From These 12 Sites

Image from google After Google launched hi Virtual reality kit called cardboard people are searching for where to buy it. Recently we post about Google Cardboard VR Kit SDKs for Android and Unity Released . Google given a plans that anyone can make it with any material like pizza box and also announced to give it for free in Google I/O conference in June. For those who still dont know where to buy this kit we made this sites list and it has Google's official site too. Google official https://www.google.com/get/cardboard/get-cardboard.html Others https://www.unofficialcardboard.com/products http://www.imcardboard.com/ http://www.getgooglecardboard.com/site/ordernow.html http://www.ceocase.com/products/3d-cardboard https://cardboard-kit.fr/ http://www.elecfreaks.com https://dodocase.zendesk.com http://www.knoxlabs.com/#order http://www.dx.com/ ebay http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias

Google Cardboard VR Kit Amazing Fun: SDKs for Android and Unity Released

Photo: googledevelopers.blogspot Google revealed that it has supplied greater than 500,000 Google Cardboard devices, enabling quite anyone to relish virtual reality. Furthermore the company has additionally launched the Cardboard SDK for the developers in order to more quickly create Cardboard apps. Using virtual reality becoming a lot more fashionable, it is usually simple to see toward the ongoing future of engineering. But let's say the solution is slightly simpler? Google launched Google Cardboard soon after Facebook purchased Oculus VR , an organization that targets particularly on virtual reality, for the gigantic $2 billion. In reality, lots of propose that Cardboard was actually something of a joke, poking fun at the reality that Google can develop a virtual reality product without needing to invest $2 billion. Google has additionally released a " Cardboard SDK " both for Android and Unity that is targeted at assisting developers to

Visual Studio Tools for Unity 1.9

The Visual Studio Tools for the Unity add-on (previously known as UnityVS) currently available for download on the Visual Studio Gallery on the following links: VSTU is actually Microsoft’s free Visual Studio add-on that allows a deep programming and debugging experience for dealing with the Unity gaming technology and framework. This is certainly the first launch since the purchase of SyntaxTree, and Microsoft passionate to achieve the possibility to get towards Unity community with Visual Studio. Downloads: Visual Studio 2010 Tools for Unity Visual Studio 2012 Tools for Unity Visual Studio 2013 Tools for Unity Here are the highlights in 1.9 release: Faster debugger. Faster startup.  Better handling of C# constructs.  Start your game and your debugging session in one click. Sens Feedback and advice for this tool at   UserVoice , see also: Know the Unity version of a Unity project Without Unity Unity Forum Rules - You Need To Know

Custom Input Manager For Unity-InControl

InControl is an input manager for Unity3D that standardizes input mappings around a variety of platforms for most common controllers. InControl will make it easy to add controller support in your game using a simple, powerful API. Most of the hard work of mappings are managed for you with plenty of controllers handled cross-platform, and more to be added continually. Include virtual touch controls, or keyboard mappings to the game with only a few clicks, and get it feed directly into the API you're already utilizing being a virtual controller. Features • Xbox 360 controller • PS3 & PS4 controllers • PlayStation Vita PSM • Apple MFi controller (iOS 7+) • OUYA, Amazon Fire and many more! • Touch controls • Keyboard and Mouse • XInput, with rumble! (Windows) Documentation is available at: http://www.gallantgames.com/incontrol Free   https://github.com/pbhogan/InControl Paid   https://www.assetstore.unity3d.com/en/#!/content/14695

Guy gets caught running asset sharing site and got banned

Hot news from Reddit that Guy gets caught running asset sharing site, gets his account banned, demands Unity to fire employee who fired him or he'll release a giant torrent of assets. Original Reddit's post The guy who running asset sharing site posted a thread on unity forum about his assets sharing site but now thread is deleted and the guy is banned. He is banned now but the giant assets pack are in his Data base and he is likely to publish a torrent. lets see what happen next!

Is Mobogenie The Next Biggest Android Market?

Mobogenie is an international company which provides applications for the Android platform and smart phone management applications for PC. Their offices are in Silicon Valley, Latin America, Asia and Middle East, we are supported both locally and globally. Mobogenie provide users with Android application and PC software. The main features are as below: Mobogenie Android application: • Just one-click to download apps without registration • Help to clean the jungle file in your phone. Mobogenie PC client: • Transfer files from your Android to your PC and from your PC to your Android. • Backup your contacts, messages, apps, music, images, and videos. • Restore backed up data. • Send and reply to SMS from within Mobogenie on your PC. • Manage all your apps: move from phone memory to SD card, update, uninstall, manage your music, pictures, and videos What Is Unity? Company Facts You Should Know CYPAY CYPAY is an online payment system that features a larger

Unity Slender Guide by alucardj

Have a look at the complete guide and source of slender  by  alucardj . This what he said in unity forum. +unity3DIY Finally, I have given up and am now making my scripts available for download. If you need to know how these scripts work, watch all my videos. If you want to just get the game running, follow the videos starting at 79 _ Slender the Examination 6 months after I started using Unity 3D I wrote a little 'guide' on Unity answers to a question about Slender. That turned out to be crazy, I never expected the amount of traffic and questions that was to come after that. Now ignorance is no excuse but i was naive, I didn't even know what a Slender was! The first time I answered a question for how to pick up papers, I thought it was for a RPG quest or a school project. When the how can the player detect when the enemy is visible questions came up, I was thinking about Doctor Who (if you know what I mean, you'll know. I want to do that one myself!). In

Free Game PSD's Used By Unity3diy Is Now Revealed

Today we are giveaway our top psd's which we used to make our games splash screens and icons. They have all files, action, effects and folder so what are you waiting for download now!

Free Flappy Bird Source Clone

Now Make Your Own Flappy Bird Clone :) This game gives you complete functions of flapping birds. And the amazing thing is its free we were trying to upload this asset to unity assetstore but don't know why they rejected so we added this source on github for all our new and old users :) C# coded 1 Psd for all Download source here https://github.com/unity3diy/Flappy-Bird-Clone Test Webplayer demo unity3diy/Flappy-Bird-Clone