• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

FSXA ASM FS8 seasonal tweaks

Messages
86
Having some real difficulty with this one.. for the life of me I don't understand the syntax of the ASM code to change the seasonal textures. I've read the wiki tutorial for the fs8 seasons but it doesn't describe how to change the variables (or I'm too dumb to understand :D )

Here's what I have right now:

Texture list.. this grass texture is the same during fall and spring, which is why fall texture is there twice
Code:
    TEXTURE_LIST_BEGIN
    TEXTURE_DEF TEXTURE_BUILDING    , <255,255,255,255>, 56.723946, "GRASS.DDS"	; 0
    TEXTURE_DEF TEXTURE_BUILDING    , <255,255,255,255>, 56.723946, "GRASS_WI.DDS"	; 1
    TEXTURE_DEF TEXTURE_BUILDING    , <255,255,255,255>, 56.723946, "GRASS_FA.DDS"	; 2
    TEXTURE_DEF TEXTURE_BUILDING    , <255,255,255,255>, 56.723946, "GRASS_FA.DDS"	; 3
    TEXTURE_LIST_END


The example code I took from the Wiki successfully works, and changes the seasons accordingly, however I need to tweak it to match the correct days
Code:
........
.....................
; NonAlpha
grassbase_NonAlpha label BGLCODE
IFIN1 tex_01, 0000006f8h, 0, 0
MATERIAL 0,1
JUMP tex_verder
tex_01 label word
IFIN1 tex_02, 0000006f8h, 1, 1
MATERIAL 0,2
JUMP tex_verder
tex_02 label word
IFIN1 tex_03, 0000006f8h, 2, 2
MATERIAL 0,0
JUMP tex_verder
tex_03 label word
MATERIAL 0,3
tex_verder label word
    DRAW_TRI_BEGIN 0, 1169
    DRAW_TRI   55,  83,  38 ; poly=473 part=1
........

I'm looking to change it to show Winter (December through February), Spring (March through May), Summer (June through August) and Fall (Sept through Nov)

Any tips?
I initially though the 2 numbers after "6f8h" were the days input, but after changing those the texture was stuck in fall.
 
Back
Top