LIBGDX window Add Alpha action change the background actor Alpha

Source: Internet
Author: User
Tags getcolor libgdx

Phenomenon:

When a window is included in the stage, and an alpha action is added to a actor,window, the actor disappears, and when the actor joins the Alpha action, it does not work.

Solve:

Rewrite the Draw method and add Batch.setcolor (GetColor (). R, GetColor (). G, GetColor (). B, GetColor (). a);

ImportCom.badlogic.gdx.graphics.g2d.Batch;ImportCom.badlogic.gdx.scenes.scene2d.Actor;Importcom.secondegg.reversi.util.Assets;/** * * @authorCUIZHF*/ Public classTableextendsActor { PublicTable () {} @Override Public voidAct (floatDelta) {        Super. Act (delta); } @Override Public voidDraw (Batch batch,floatParentalpha)            { Batch.setcolor (GetColor (). R, GetColor (). G, GetColor (). B, GetColor (). a); Batch.draw (Assets.instance.table.tableh,0, 0); Batch.draw (Assets.instance.table.tablen,100, 0); }}

LIBGDX window Add Alpha action change the background actor Alpha

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.