Hello Guest

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ioker

Pages: [1]
1
Ok. I found the solution. I need to use Color32, not Color.

2
Support / Changing color of tk2dSprite and tk2dTextMesh not working
« on: June 25, 2014, 09:18:19 am »
Hi everyone,

I have this class:

Code: [Select]
using UnityEngine;
using System.Collections;

public class TestClass : MonoBehaviour {
public tk2dSprite sprite;
public tk2dTextMesh text;

public void configure (Color color) {
sprite.color = color;
text.color = color;
text.Commit();
}
}

But none of the two elements changes the color that I set. What it's wrong in this class?

Thanks in advance.

3
Support / Re: tk2dSprite load from url
« on: June 09, 2014, 08:53:41 am »
Thank you. I've already found the example.

Good job with this toolkit.

4
Support / tk2dSprite load from url
« on: June 03, 2014, 04:02:38 pm »
Hi,

I'm noob using 2d toolkit and I can't understand, or if it's possible, how to load an image to use it as tk2dSprite from an Url.

I know that exists the function tk2dSprite.CreateFromTexture() but I can't understand the parameters that needs.

Can someone explain me this?

Thanks in advance.

Pages: [1]