x


Can unity handle advanced 2d effects?

Hi.

I'm an experienced Flash developer looking into Unity. Its 3D capabilities are great but in my project I'd like to use 2d effects and interfaces. Can unity work with dynamically generated and animated bitmaps? Or maybe there's something like Pixel Benders effects for bitmaps?

What are best practices for working with 2D elements in unity?

Thanks in advance.

more ▼

asked Sep 14 '10 at 09:27 PM

valyard gravatar image

valyard
343 2 4 7

I don't have an answer to your question, but I can say that Unity has a lot of power! 3D games usually use more of an engine than 2D games, so I would guess it can handle whatever you can throw at it! I have never tried to use "dynamically generated and animated bitmaps" so, I have no idea what kind of power it uses... As for normal bitmaps, I know Unity can handel almost any! -Hope I helped, Gibson

Sep 14 '10 at 10:37 PM AVividLight
(comments are locked)
10|3000 characters needed characters left

3 answers: sort voted first

There is a commercial product I know of that makes working with 2D textures inside Unity their job. It's called Sprite Manager 2, and can be found here.

http://www.anbsoft.com/middleware/sm2/

more ▼

answered Sep 15 '10 at 06:56 AM

tylo gravatar image

tylo
297 5 9 18

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

You can dynamically create bitmaps using SetPixel(s), however altering bitmaps frequently is not really a good idea since they have to be re-uploaded to the graphics card by using the Apply() function, which is a relatively slow process. Generally you do animation by using UV offsets in texture atlases, or by moving images around in space (or both).

more ▼

answered Sep 14 '10 at 11:46 PM

Eric5h5 gravatar image

Eric5h5
81.5k 42 133 529

From what I know about Unity I have also heard much praise for the UV offseting. Essentially your 3D Texture becomes the sprite sheet.

Textures can be switched at runtime to facilitate your request for dynamic content.

Sep 15 '10 at 06:55 AM tylo
(comments are locked)
10|3000 characters needed characters left
more ▼

answered Dec 01 '10 at 04:52 AM

fireDude67 gravatar image

fireDude67
945 9 15 30

(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:

x1071
x206
x92
x16

asked: Sep 14 '10 at 09:27 PM

Seen: 1976 times

Last Updated: Sep 14 '10 at 09:27 PM