UV Map, change texture color (lighter/darker)
I'm trying to figure out how I could make my own lighting system for my UV map in Unity. I have the theory nailed down (I believe) but I'm having problems on the practical side. I have a voxel...
View ArticleSelf-Illum Diffuse, how does it work?
I'm trying to use the built in self-illum diffuse shader. I have put a Base and an Illum texture on the object. The Illum is all black for testing purposes (also tried different shades). The Illum...
View ArticleShader that uses UV1 to map texture and UV2 to map light
I'm using a texture atlas and a light atlas to tile a mesh. I have the texture atlas working fine. I can apply textures and create a sort of tile map on my coded mesh. At the moment I'm using the...
View ArticleGetting all scripts attached to a gameObject (Problem)
GameObject go = GameObject.Instantiate(bullet, transform.position, Quaternion.identity) as GameObject; Component[] c = go.GetComponents(MonoBehaviour); foreach (MonoBehaviour script in c) {...
View ArticleMaking a jump with Rigidbody2D character
I'm trying out the newish Unity 2D features. I'm trying to make a basic platformer. I've got left/right movement working with AddForce but I'm getting stuck on the jump. Here's what I have: if...
View ArticleSimple Rigidbody2D controller (Platformer Jump)
I'm trying to make a very simple character controller script for an object with a rigidbody2D (aiming for basic 2D platformer gamelay with WASD and Space to jump). void HandleMovement() { if...
View ArticleBest way to make a tilemap with the 2D features
I'm wondering what is the best way to make a tilemap with the 2D features. (Tilemap for a platformer like an old mario, not top-down like an old rpg, if that changes anything). What I've thought of so...
View ArticleGetting a smooth jump with the Character Controller
I'm embarrassed to post this here, as there are already several instances of this question on the boards but sadly no proper answers. This is the Update method of my PlayerControl script: void Update()...
View ArticleInstantiating cubes at runtime, align them
I'm making a little game demo where I'm playing around with some ideas. At the moment I'm allowing my player to build his own house in a way very similar to Minecraft. A cube prefab serves as the...
View ArticleRaycast no hit when depends on input
I'm trying to cast a ray to check for collision when "W" is pressed. I figured out how it should work but I can't figure out why it's working in my first case and not in the second. 1) In this case...
View ArticleHiding objects between my character and camera, how to show them again when...
I'm using the following code to hide objects between the camera and my player: private void Update() { Debug.DrawRay(this.transform.position, (this._target.transform.position -...
View ArticleUnity unexplicably freezes on a very simple procedure
I'm working on the very beginnings of a random level generator. I'm running this code: using UnityEngine; using System.Collections; public class Generator : MonoBehaviour { public GameObject rock; //...
View ArticleOnCollisionEnter problems
My apologies for asking such a simple question. I have this code attached to my character (FPS character controller): void OnCollisionEnter(Collision c) { print("hello"); } I've attached a RigidBody to...
View ArticleCan't get ENTER key working
I've been trying to get the Enter key working: void Update () { if (Input.GetKeyDown("enter")) { print ("enter pressed"); } } I also tried `Input.GetKeyDown(Keycode.Return)` I read the manual and other...
View ArticleCan't Translate and Rotate at same time
I'm writing my own character controller that uses a rigidbody. I'm getting stuck on something weird. This is my code (variable declarations not included): void Start() { myNormal = transform.up;...
View ArticleConverting this for loop to C#
I'm trying to convert this particular for loop from JS to C#. for (var t: float = 0.0; t < 1.0; ) { t += Time.deltaTime; transform.position = Vector3.Lerp(orgPos, dstPos, t); transform.rotation =...
View ArticleScreen.lockCursor mystery?
I'm using this simple code on my custom FPS character controller: void Start() { // Lock Cursor Screen.lockCursor = true; } I just want the mouse cursor to stay frozen where it is (ie: always in the...
View ArticleSet RigidBody Transform y to the Characters Transform y
I'm writing a script for my character to pick up objects. I almost have it nailed down but at the moment when the character "picks" the object it stays on the floor, and just gets dragged around as the...
View ArticleCreating this light effect
How can I create this light effect? I have little experience with graphics how could I create this light effect? http://misslineage2.com/media/images/pics/popup2.jpg
View ArticleSwing an object back and forth
I'm trying to write a piece of code that swings an object forward and backwards. Eventually it will be for swinging a close combat weapon in an FPS. IEnumerator swing() { Vector3 orgPosition =...
View Article