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.


Topics - Jefemcownage

Pages: [1]
1
Support / Upgrading errors
« on: November 20, 2013, 09:36:17 pm »
tk2d Undo/Redo callback failed. Undo/Redo not supported in this version of Unity.
UnityEngine.Debug:LogError(Object)
tk2dEditorUtility:.cctor() (at Assets/TK2DROOT/tk2d/Editor/tk2dEditorUtility.cs:18)
UnityEditor.EditorAssemblies:SetLoadedEditorAssemblies(Assembly[])

NullReferenceException: Object reference not set to an instance of an object
tk2dSpriteCollectionBuilder.Rebuild (.tk2dSpriteCollection gen) (at Assets/TK2DROOT/tk2d/Editor/Sprites/tk2dSpriteCollectionBuilder.cs:690)
tk2dSpriteCollectionBuilder.RebuildOutOfDate (System.String[] changedPaths) (at Assets/TK2DROOT/tk2d/Editor/Sprites/tk2dSpriteCollectionBuilder.cs:151)
tk2dSpriteCollectionTextureWatcher.OnPostprocessAllAssets (System.String[] importedAssets, System.String[] deletedAssets, System.String[] movedAssets, System.String[] movedFromAssetPaths) (at Assets/TK2DROOT/tk2d/Editor/Sprites/tk2dSpriteCollectionTextureWatcher.cs:24)


Any ideas?


2
Support / Error: The name "AssetDatabase" does not exist
« on: October 18, 2012, 03:06:01 am »
Just upgraded a project to the latest and I get this when trying to build. Anybody else seen this?

3
Support / Background tile
« on: July 24, 2012, 01:03:26 am »
I have a simple question. How do I create a tile that just fills the screen with the same tile? I'm having no luck with the http://unikronsoftware.com/2dtoolkit/doc/tilemap/Tutorial.html


4
Support / MultiPlatform Toolkit integration
« on: July 20, 2012, 09:37:23 pm »
Has anyone had any experience integrating 2D toolkit into the multiplatform toolkit (http://smuggletruck.com/multiplatform/). If not how are people handling multiplatform with 2d toolkit?

Thanks!

5
Support / overlay texture/masking
« on: June 06, 2012, 05:03:11 pm »
I'm currently tinting a sprite red as it takes more damage in a prototype i'm doing but I would like to overlay a sprite, perhaps even having a small texture that just repeats, on only the non-transparent pixels. Is this possible with 2d toolkit?

6
Support / draw a portion of a sprite
« on: June 04, 2012, 07:37:42 pm »
Hi I'm wondering if it's possible to draw a portion of a sprite with this plugin? I have a power meter that I'd love to do as one sprite. I know this is possible in the unity GUI but I haven't come across any documentation for it in tk2d.

7
Support / ios shader performance
« on: April 11, 2012, 08:45:10 pm »
Hello I'm curious which shader performs faster on ios, the mobile:

mobile->particles->alpha blended

or

tk2d/tk2d/BlendVertexColor


Trying to support the 3gs right now and every frame matters.

8
Support / Switching Sprite Collections in script
« on: April 01, 2012, 01:44:14 am »
Hey I'm getting a null pointer every time I try the following:

tk2dSpriteCollectionData data = Resources.Load("UI_Collection", typeof(tk2dSpriteCollectionData)) as tk2dSpriteCollectionData;
tk2dSprite sprite = GetComponent<tk2dSprite>();
sprite.SwitchCollectionAndSprite(data,data.GetSpriteIdByName("All_Time_Button_Un"));


I need to change the collection of the sprite to UI_Ccollection. Anybody else run into this?

Pages: [1]