Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by mariusnohr · Oct 12, 2015 at 03:34 PM · texture2dsetpixel

SetPixel / Texture.Apply – terrible performance on iOS.

Hi!

I'm having some trouble with performance when I try to update a texture on every frame using Texture.Apply(). It runs smooth on a MacBook Pro and on an iPhone 6, but when I test it on older devices, I get around 2-5 fps.

I'm trying to create a scratch card thing, which loops over some brush pixels and applies them to a texture on given x and y coordinates. Check this video to get an idea of the effect I'm looking for: https://drive.google.com/file/d/0B0aaXCyLab3sd1hmZFpJcmFGR0U/view

The texture painting code looks like this:

 for (int x = 0; x < brush.width; x++) {
     for (int y = 0; y < brush.height; y++) {
         Color sourceColor = brush.GetPixel(x, y);
         Color maskColor = maskTexture.GetPixel(xPos + x, yPos + y);
         if (sourceColor.a < 1 && maskColor.a > 0) {
             maskTexture.SetPixel(xPos + x, yPos + y, sourceColor);
         }
     }
 }
         
 maskTexture.Apply();

Is it any alternative method I can use to achieve a similar effect? Doing this inside a shader would probably be much better performance, but I have very limited experience with shaders in Unity.

I have also looked at the RenderTexture class, but I'm not really sure how to use it for this particular task.

Comment
Add comment · Show 2
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image DeeCeptor · Jun 20, 2018 at 11:04 PM 0
Share

Did you ever find a solution for this? I'm finding SetPixels and Texture2D.apply() to have bad performance on mobile iOS.

avatar image sgthale DeeCeptor · Jun 20, 2018 at 11:15 PM 0
Share

Didn't even realize I necrod this question but you brought it back up from the grave. I posted a solution below.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by sgthale · Jun 20, 2018 at 11:14 PM

Yes this sounds like a thing for shaders. You will have to research this on your own but ideally you want to make a shader with:

  1. Base unscratched texture

  2. Completely revealed scratched texture

  3. Buffer A

  4. Buffer B

Pass 1: Write to buffer A's red channel all of buffer B's red channel plus the new scratchy effects on the red channel.

Pass 2: Write to buffer B all of buffer A

Pass 3: Lerp between base and reveal textures using Buffer B's red channel.

This isn't something particularly easy to do but this is what you would do.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

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

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Set pixels on light cookie texture via script? 0 Answers

make pencil just like the lab 0 Answers

Drawing a solid circle onto texture 2 Answers

Setpixels creates gradient texture instead of raw colored pixels 1 Answer

Combine 2 textures of different sizes at specific location 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges