farmersfable's Forum Posts

  • 6 posts
  • After some experimentation I changed the value in my "size" array from 42 to 49 (to match the number of characters in my SpriteFont+ Character set):

    {""c2array"":true,""size"":[2,49,1],""data"":[[[8],[9],[11],[12],[13],[15],[16],[17],[19],[20],[21],[23],[24],[25],[26],[28],[29],[30],[31],[32],[33],[34],[35],[36],[37],[38],[39],[40],[41],[44],[45],[47],[48],[49],[51],[52],[54],[56],[58],[59],[60],[73],[48],[38],[32],[58],[58],[56],[56]],[[""Il!'""],[""i|""],[""j:""],["".""],["")""],["",(`""],["";""],[""]""],[""1[""],[""J\""""],[""t-""],[""r""],[""s?°""],[""f""],[""L*""],[""€""],[""Pk""],[""F""],[""hn""],[""Bceuvx""],[""Eapq6""],[""So28""],[""Rbdgy3/""],[""05""],[""z49<>""],[""T\\$""],[""Y+""],[""HUXZ~£""],[""DK7=""],[""_""],[""C#&""],[""m""],[""N""],[""V""],[""w""],[""AG""],[""@""],[""O""],[""Q""],[""M""],[""%""],[""W""],[""ä""],[""ö""],[""ü""],[""Ä""],[""Ö""],[""Ü""],[""ß""]]]}

    This solved my problem.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • I wish this worked for me... The end result is the same. There is always a white space to the right of German characters (vowels with umlauts).

    {""c2array"":true,""size"":[2,42,1],""data"":[[[8],[9],[11],[12],[13],[15],[16],[17],[19],[20],[21],[23],[24],[25],[26],[28],[29],[30],[31],[32],[33],[34],[35],[36],[37],[38],[39],[40],[41],[44],[45],[47],[48],[49],[51],[52],[54],[56],[58],[59],[60],[73],[0],[0],[0],[0],[0],[0],[0]],[[""Il!'""],[""i|""],[""j:""],["".""],["")""],["",(`""],["";""],[""]""],[""1[""],[""J\""""],[""t-""],[""r""],[""s?°""],[""f""],[""L*""],[""€""],[""Pk""],[""F""],[""hn""],[""Bceuvx""],[""Eapq6""],[""So28""],[""Rbdgy3/""],[""05""],[""z49<>""],[""T\\$""],[""Y+""],[""HUXZ~£""],[""DK7=""],[""_""],[""C#&""],[""m""],[""N""],[""V""],[""w""],[""AG""],[""@""],[""O""],[""Q""],[""M""],[""%""],[""W""],[""ä""],[""ö""],[""ü""],[""Ä""],[""Ö""],[""Ü""],[""ß""]]]}

  • I'm trying to add some German characters to my SpriteFont+ sheet:

    I also made sure to modify the Character set:

    ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#"'&()[]|`\/@°+=*$£€<>%äöüÄÖÜß

    Unfortunately, there's all this weird spacing and I'm not sure what's causing it! The new letters seem to be aligned with the others... The Character set seems to match up with the sprite fonts...

    I'm at a loss for an explanation. Anyone know what's going on?

  • So I'm using SpriteFont+

    I'm trying to convert my entire project to German but some texts have large white spaces where there should be vowels with umlauts, i.e. ä, ö, and ü.

    Can I add these characters to my sprite sheet? How will they pick up those characters from the key board?

  • I have the following data:

    10,15,10.5,15.75,11.025,16.5375,24.8063,17.3644,12.1551,18.2326,12.7628,8.934,6.2538,4.3776,3.0644,4.5965,3.2176,2.2523,3.3784,5.0677,7.6015,11.4023,7.9816,5.5871,3.911,2.7377,4.1065,2.8746,2.0122,1.4085,2.1128,1.479,1.0353,0.7247,0.5073,0.7609,0.5326,0.799,0.5593,0.3915,0.5872,0.8809,0.6166,0.4316,0.6474,0.9712,1.4567,1.0197,1.5296,2.2944,3.4415,5.1623,3.6136,2.5295,1.7707,1.2395,0.8676,1.3014,1.9522,2.9282,4.3924,3.0747,2.1523,1.5066,2.2599,1.5819,2.3729,1.661,2.4915,3.7373,5.6059,3.9241,5.8862,8.8293,6.1805,4.3264,3.0285,4.5427,3.1799,2.2259,3.3389,5.0083,3.5058,5.2587,7.8881,11.8321,8.2825,5.7977,8.6966,13.0449,19.5674,13.6971,20.5457,14.382,21.573,32.3595,48.5393,33.9775,50.9662,35.6764

    I want to load it into an array and then retrieve any of its values by calling its position in the array, i.e. arrBill.At(0).

    How do I load it up to begin with?

  • I have the following that I'm trying to display with two trailing decimal places. I looked around the forum and this seems to be the answer, but this doesn't work.

    Set tmpBill3 to log10(10^(tmpBill3)*noise_bill2)

    "Bill's Yield: " & round(10^((tmpBill3 * 100) / 100))

    An example value should look something like this: 12.45

  • 6 posts