GithubHelp home page GithubHelp logo

Comments (2)

odrick avatar odrick commented on August 19, 2024

This is a very rare feature. And yes, right now ftp trimms by alpha only. I can suggest you to fork the project and implement the required functionality. Look at utils/Trimmer.js, https://github.com/odrick/free-tex-packer-core/blob/master/utils/Trimmer.js . Something like:

static getAlpha(data, width, x, y) {
    let pos = ((y * (width * 4)) + (x * 4));

    let r = data[pos];
    let g = data[pos + 1];
    let b = data[pos + 2];
    let a = data[pos + 3];

    if(r === 0 && g === 0 && b === 0) {
        return a;
    }
   
    return 1; 
}

from free-tex-packer.

JannikGM avatar JannikGM commented on August 19, 2024

This is a very rare feature.

My use-case is, but in general this should be an extremely common use-case, because it allows for additive blending if textures are stored in pre-multiplied alpha: https://github.com/dtrebilco/PreMulAlpha#the-three-in-one-blend-mode

So alpha = 0, but color in RGB, is often seen with particle systems (which is exactly when you'll want to use an atlas, so you can have many different particles in the same texture).

from free-tex-packer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.