x


Smooth Random.Range

I would like to Smooth the Random.Range function so the numbers gradually change.

Is there any way to do this using a Mathf.Lerp function?

This is for creating lightning in the Linerender component that gradually shifts from one random to another.

-- FPSyndicate

more ▼

asked Jun 07 '11 at 02:21 AM

FutchProductionsSyndicate gravatar image

FutchProductionsSyndicate
225 18 21 25

(comments are locked)
10|3000 characters needed characters left

2 answers: sort newest

Ah, what you're looking for is the Perlin noise function. If only you'd had that notion about 15 years ago, it could have been you accepting the Academy Award for Technical Excellence! You can find a C# class implementation in the "Procedural Examples".

There are 1D, 2D and 3D versions. Basically, you use some smoothly varying input (like Mathf.Sin), and it gives you a smoothly varying random output. A key feature is that for a given input, you always get the same output.

more ▼

answered Jun 07 '11 at 02:53 AM

hellcats gravatar image

hellcats
651 8 12 23

Thakns! i have the procedural examples, and was trying to replicate their lightning using the line renderer, ill try that!

Jun 07 '11 at 05:28 PM FutchProductionsSyndicate

Are there any tutorials on how to implement the perlin noise? because i have the C# Class, but it won't allow me to add the script to my gameobject.

Jun 07 '11 at 06:43 PM FutchProductionsSyndicate

No, you can't add Perlin as a component to your game object because it doesn't derive from MonoBehavior. But that is ok, because you can just add it as an instance variable and use it in your current Update() method. That is what Start() or Awake() is for: to perform more complex initialization of your game object that doesn't happen by default. There is no reason to make Perlin a component because it is part of the implementation of your game object. It is better to hide such details behind the class abstraction.

So you want something like:

private var Perlin:perlin = new Perlin();

Jun 07 '11 at 06:56 PM hellcats
(comments are locked)
10|3000 characters needed characters left

This is a simple solution, hope it may help you. Swings the number smooth between 0 and 1 at a rate defined by slope, and changes swing direction at random intervals defined by interval or at the limits 0 and 1. Adjust slope and interval to get the desired results.

var slope:float = 0.5;
var interval:float = 1;
private var smooth:float = 0.5;
private var tNext:float = 0;
private var dir:float = 1;

function Update(){

    if (Time.time>tNext){
       tNext += interval*(0.5+Random.value);
       dir = -dir;
    }
    smooth += dir*slope*Time.deltaTime;
    if (smooth>1 || smooth<0) dir = -dir;
    smooth = Mathf.Clamp(smooth,0,1);
    // Example: using smooth to vary amb light
    RenderSettings.ambientLight = Color.white*smooth;
}
more ▼

answered Jun 07 '11 at 02:31 PM

aldonaletto gravatar image

aldonaletto
41.4k 16 42 197

(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x572
x207
x106

asked: Jun 07 '11 at 02:21 AM

Seen: 1531 times

Last Updated: Jun 07 '11 at 07:19 PM