1. #1

    Data source with colours?

    Hi, does anyone know if you can use a data source to change colours of an object?
    Share this post

  2. #2

    Re: Data source with colours?

    yes you can
    Share this post

  3. #3

    Re: Data source with colours?

    Originally Posted by rockdenver
    Hi, does anyone know if you can use a data source to change colours of an object?
    Use a vector object as a color source, the three values will act as RGB values.
    Share this post

  4. #4

    Re: Data source with colours?

    Cheers.
    Share this post

  5. #5
    Jarr3tt88's Avatar Senior Member
    Join Date
    Jan 2013
    Posts
    3,520

    Re: Data source with colours?

    Originally Posted by P4INKiller
    Originally Posted by rockdenver
    Hi, does anyone know if you can use a data source to change colours of an object?
    Use a vector object as a color source, the three values will act as RGB values.
    I didn't know that, pretty cool.

    I usually just use the color event, whats wrong with that?
    Share this post

  6. #6

    Re: Data source with colours?

    Originally Posted by Jarr3tt88
    Originally Posted by P4INKiller
    Originally Posted by rockdenver
    Hi, does anyone know if you can use a data source to change colours of an object?
    Use a vector object as a color source, the three values will act as RGB values.
    I didn't know that, pretty cool.

    I usually just use the color event, whats wrong with that?
    Nothing wrong with that, works either way.

    You might want to use vectors if you want a smooth transition between the colors.
    You could have two separate vectors, each with different values, and then interpolate between the values using something like a curve data source.
    Share this post

  7. #7
    nannerdw's Avatar Senior Member
    Join Date
    Jan 2013
    Posts
    1,268

    Re: Data source with colours?

    Set vector events can change colors individually, too, for objects which have more than one color option.

    Also, if you're using an emitter, and you change the color of the source object using a set vector event, all existing emitted objects will change to that color. If you change the color of the source object using a color event, all existing emitted objects will retain their color, and new objects emitted after the color change event will have the new color.
    Share this post

  8. #8

    Re: Data source with colours?

    Wow, fantastic information! Did not know about the vectors for color, but I had heard that it could be done somehow.
    Share this post