• Dear Cerberus X User!

    As we prepare to transition the forum ownership from Mike to Phil (TripleHead GmbH), we need your explicit consent to transfer your user data in accordance with our amended Terms and Rules in order to be compliant with data protection laws.

    Important: If you accept the amended Terms and Rules, you agree to the transfer of your user data to the future forum owner!

    Please read the new Terms and Rules below, check the box to agree, and click "Accept" to continue enjoying your Cerberus X Forum experience. The deadline for consent is April 5, 2024.

    Do not accept the amended Terms and Rules if you do not wish your personal data to be transferred to the future forum owner!

    Accepting ensures:

    - Continued access to your account with a short break for the actual transfer.

    - Retention of your data under the same terms.

    Without consent:

    - You don't have further access to your forum user account.

    - Your account and personal data will be deleted after April 5, 2024.

    - Public posts remain, but usernames indicating real identity will be anonymized. If you disagree with a fictitious name you have the option to contact us so we can find a name that is acceptable to you.

    We hope to keep you in our community and see you on the forum soon!

    All the best

    Your Cerberus X Team

Implemented on GIT HTML disable/enable anti-alias using config.cxs

grant

Member
CX Code Contributor
3rd Party Module Dev
3rd Party Tool Dev
Joined
Nov 19, 2019
Messages
80
On the HTML5 target it would be nice to have a setting to disable/enable anti-alias/multi-sampling. Just like this...

config.cxs
Code:
#HTML5_CANVAS_ANTIALIAS=False

html5game.js (at line #26)
Code:
var attrs={ antialias: ( CFG_HTML5_CANVAS_ANTIALIAS=="1" ), alpha:( CFG_HTML5_CANVAS_ALPHA=="1" ) };
 
Last edited:
This is for polygons. I don't think it has any affect on textures. That code I shared is fully working.
 
Your version is not compatible with our latest version, see the addition of the #HTML5_CANVAS_ALPHA flag.
 
Oops, the Mac port hadn't gotten the update yet, so I didn't think about that. I updated it so that it is compatible.
 
While I didn't notice any difference, your changes are implemented:

 
As nobody mentioned any problems, I moved it to the develop branch.
 
Back
Top Bottom