• 0 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: July 11th, 2023

help-circle
  • IIRC Exanima itself was never meant to be the full open world RPG. It was always intended to be a smaller game to perfect some of the game mechanics for their ultimate goal of building that open world RPG. I have no idea if they still plan to build that other game or if they are working on it in parallel or have ditched it entirely.

    Edit: The community seems to believe that the devs are still planning to make Sui Generis at any rate. Exanima has been in EA for 10 years or so now, and based on what I’m seeing online they are almost at their 1.0 release version, at which point they will divert their attention to to Sui Generis. Take with a pinch of salt, as this information comes from the r/exanima community on reddit.






  • That’s not true these days. You can try it yourself right in your browser’s dev console.

    These results are from Firefox’s console.

    0 == null == undefined
    > false
    0 == null
    > false
    0 == undefined
    > false
    null == undefined
    > true
    null === undefined
    > false
    

    And even in the one case where == says they are the same, you can fix that by making sure you are using === so that it doesn’t do type coercion for the comparison.