Navigation

    Fuze Arena Logo
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Help
    • Discord

    How many ink colors does Fuze support?

    General Discussion
    5
    12
    533
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • B_Studios
      B_Studios last edited by

      Hello! I’m currently working on a drawing and painting tool that acts as a modified version of the Fuze Paint demo with new and different features. One feature I would like to add is being able to switch between different colors. I know Fuze does have multiple colors for ink however how many different colors are there? I also know that some colors have different names such as sky/light blue being renamed to FuzeBlue. If anyone has any answers or suggestions to this please let me know as this would greatly help my project. Thank you! :)

      pianofire 1 Reply Last reply Reply Quote 0
      • pianofire
        pianofire Fuze Team @B_Studios last edited by

        @B_Studios Have a look at this post: https://fuzearena.com/forum/topic/119/color-constants/2

        B_Studios 1 Reply Last reply Reply Quote 2
        • B_Studios
          B_Studios @pianofire last edited by

          @pianofire Awesome, these are exactly what I was looking for! Thank you very much! :D

          ITzTravelInTime 1 Reply Last reply Reply Quote 0
          • ITzTravelInTime
            ITzTravelInTime F @B_Studios last edited by

            @B_Studios Note that some of the colors will be available in the next version of fuze which will come later, but colors essentially are vectors of 4 values which goes from 0 to 1, the values represent R, G, B and the Alpha value for opacity and transparency

            B_Studios 1 Reply Last reply Reply Quote 1
            • B_Studios
              B_Studios @ITzTravelInTime last edited by

              @ITzTravelInTime Gotcha! I don’t plan on using too many of them, but once the next version of Fuze is available I will definitely be experimenting with them and seeing which ones I might add. Thank you for letting me know. :)

              1 Reply Last reply Reply Quote 1
              • Jongjungbu
                Jongjungbu F last edited by

                Just to clarify you can do all those colors manually without waiting for the patch by using the RGB method @ITzTravelInTime mentioned. Just google the RGB numbers for colors and translate that into the color vector in Fuze. πŸ‘πŸ»

                1 Reply Last reply Reply Quote 1
                • Dave
                  Dave Fuze Team last edited by Dave

                  Just in case that's not too clear on how to implement, it would look something like:

                  ink( { 1, 0, 0, 1 } ) 
                  

                  This would give you just Red, for example. The numbers range from 0 - 1, so in order to get the exact RGB values from a 0-255 range you'll need to take the number in question and divide it by the upper limit, 255.

                  The final number in the vector is the opacity, with 1 being fully opaque.

                  1 Reply Last reply Reply Quote 2
                  • ITzTravelInTime
                    ITzTravelInTime F last edited by

                    @Dave said in How many ink colors does Fuze support?:

                    Just in case that's not too clear on how to implement, it would look something like:

                    ink( { 1, 0, 0, 1 } ) 
                    

                    This would give you just Red, for example. The numbers range form 0 - 1, so in order to get the exact RGB values from a 0-255 range you'll need to take the number in question and divide it by the upper limit, 255.

                    The final number in the vector is the opacity, with 1 being fully opaque.

                    or also something like this:

                    fancyColor = {0.5, 1, 0.3, 1}
                    
                    ink( fancyColor )
                    
                    1 Reply Last reply Reply Quote 1
                    • Dave
                      Dave Fuze Team last edited by

                      @ITzTravelInTime Ooh, very fancy. :)

                      ITzTravelInTime 1 Reply Last reply Reply Quote 1
                      • ITzTravelInTime
                        ITzTravelInTime F @Dave last edited by

                        @Dave said in How many ink colors does Fuze support?:

                        @ITzTravelInTime Ooh, very fancy. :)

                        I mean it's just to show the fact you can store the color into a variable

                        1 Reply Last reply Reply Quote 1
                        • Jongjungbu
                          Jongjungbu F last edited by Jongjungbu

                          And that it can / should be made up of floating points.

                          1 Reply Last reply Reply Quote 1
                          • Dave
                            Dave Fuze Team last edited by

                            Indeed! I'm glad you posted it! I tried it and it's a lovely minty green :)

                            1 Reply Last reply Reply Quote 1
                            • First post
                              Last post