Xonotic Competitive Edition Fund
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearZA
    Zach777
    Now 100%

    Didn't see that before. That makes colors their character quite a bit. Unfortunate as I don't really see any other foss game getting esport status anywhere else.

    1
  • Darling – run Mac apps on Linux
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearZA
    Zach777
    Now 100%

    I have never attempted to run any MacOS applications. I generally like compatibility tools. How well does Darling run Mac apps?

    2
  • *Permanently Deleted*
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearZA
    Zach777
    Now 100%

    Tbh fediverse is strange in that you use it for the decentralized federation model more than anything else. Everything else is up to the instance and how it handles things.

    2
  • Does open source need to rethink itself?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearZA
    Zach777
    Now 100%

    Tbh people forget that open source just means that you can see the source code. It has no bearing on what you can do with it. There are plenty of projects that are open source that have very restrictive licenses otherwise.

    6
  • This seems solid discord alternative
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearZA
    Zach777
    Now 100%

    This is my thoughts exactly. Zulip even has really good threading as a feature above Discord.

    Where is the federated version of Discord? Without that you might as well stick with Discord and Zulip imo.

    4
  • *Permanently Deleted*
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearZA
    Zach777
    Now 80%

    I don't think it is asking to pander. Moreso that they are a digital rights group who should probably start boosting independent privacy respecting tech instead of just fighting big tech and government. They do important work of course. But that is one area where they could greatly help their own cause.

    3
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLE
    Lemmy Support Zach777 Now 100%
    How do I subscribe to a community on another Lemmy instance?
    6
    0
    uxdesign.cc

    Sorry I did not know what to put for the title.

    9
    1

    Just curious if you will eventually be able to post something from a Mastodon account to Lemmy or vice verse. Or at least follow something on Lemmy from Mastodon.

    37
    9

    Hello. I am Zach777. A dev for Moonwards and Godot enthusiast. I wanted to share some insights about Godot UI resource and scene handling that I have implemented in Moonwards. There are also a couple useful tricks you can at the end of the post that will let you easily change the font used or the font's size while in game. But first I wanted to talk about the method of UI theme and resource handling we are using at Moonwards and it's benefits. It is important for open source projects to have clear planning in how everything is set up. Newcomers should be able to look at the section of the project that they are interested in and understand exactly what it is doing and what it relies on. People working on UI in Godot should expect no less. Unfortunately Moonwards' UI setup did not live up to that at first. Whenever a UI wanted to make a new element to override something in the main theme we would copy the main theme and change the one element. This method of theme handling grew naturally before I had joined the team. It was always a mess to deal with but it was not until the Hud was made that I realized we should refactor. Thankfully there is a theme handling method that is fairly easy to implement and works well with Godot's OOP resource handling. Godot UI can inherit visual settings from a parent's theme. Which lets you make one theme that all UI use. The new UI theme handling standard Moonwards uses has one main theme that all other themes use. A UI node will be given a small theme with only a few classes in it whenever the UI node needs items not found in the main theme. This lets Godot use the parent theme's classes on UI when the child theme does not override the parent element. This is because Godot lets a UI scene inherit the settings of a theme in it's parent even if it has a theme of it's own. The parent's theme's class will be used as long as a child node's theme does not contain it. A good example of how we use this feature of Godot's UI is in the main menu. ![](https://lemmy.ml/pictrs/image/tupXRzPFgN.png) In the main menu are large rectangular buttons I call prime buttons. These buttons do not look like any other buttons in the Moonwards project. The best way to handle this using themes is to set each button to use a PrimeButtons theme while the scene root uses the main Moonward's theme. This allows the prime buttons theme to only change the specific items it needs to without overcomplicating things. ![](https://lemmy.ml/pictrs/image/0HB0DMEtuZ.png) ![](https://lemmy.ml/pictrs/image/PMVXl1ZJWg.png) Notice how many item classes are in the Main theme in the top picture. Now look at how the Prime Buttons theme in the bottom picture only has 2 item classes in it (Button and Label). A node with the PrimeButtons theme will override the Button and Label classes in MainMoonwards theme but inherit all the other MainMoonwards theme classes. Later down the line I would like to implement some useful tricks that are possible in the Godot engine into Moonwards. I will talk about these now. One of them is easily changing font size in a running game. All you have to do is edit the resource that all your UI nodes are using and the change will percolate to the other nodes. Just make sure that the resource is not 'local to scene' as that option disables the ability for all nodes to inherit the resource changes. ![](https://lemmy.ml/pictrs/image/b0lb4c9uf2.mp4) We can even completely change what font is used while the game is running lol. All you have to do is create a new DynamicFontData and pass that to all DynamicFont's your game uses' font_data propery. ![](https://lemmy.ml/pictrs/image/dvFDkPTON4.mp4) If you want to see a basic example of the code needed to implement the tricks I just wrote about, please download the project files here: https://github.com/Zach777/Godot-Font-And-Size-Changing-Example Well thanks for reading all that. This has been my first time writing in a blog style format for my own fun. I hope it was not too evident it was my first time lol. Either way, here are the social media accounts that are relevant for this post below. Zach777's Mastodon account: https://fosstodon.org/web/accounts/280522 Zach777's Twitter account: https://twitter.com/xXZach777Xx Moonwards Twitter account: https://twitter.com/moonwards1 Moonwards community : https://lemmy.ml/c/moonwards If you have a Reddit account, please consider upvoting the post on Reddit: https://www.reddit.com/r/godot/comments/lz6ymm/some_tips_tricks_and_best_practices_for_ui/

    7
    1

    Hello. I am Zach777. A dev for Moonwards and Godot enthusiast. I wanted to share some insights about Godot UI resource and scene handling that I have implemented in Moonwards. There are also a couple useful tricks you can at the end of the post that will let you easily change the font used or the font's size while in game. But first I wanted to talk about the method of UI theme and resource handling we are using at Moonwards and it's benefits. It is important for open source projects to have clear planning in how everything is set up. Newcomers should be able to look at the section of the project that they are interested in and understand exactly what it is doing and what it relies on. People working on UI in Godot should expect no less. Unfortunately Moonwards' UI setup did not live up to that at first. Whenever a UI wanted to make a new element to override something in the main theme we would copy the main theme and change the one element. This method of theme handling grew naturally before I had joined the team. It was always a mess to deal with but it was not until the Hud was made that I realized we should refactor. Thankfully there is a theme handling method that is fairly easy to implement and works well with Godot's OOP resource handling. Godot UI can inherit visual settings from a parent's theme. Which lets you make one theme that all UI use. The new UI theme handling standard Moonwards uses has one main theme that all other themes use. A UI node will be given a small theme with only a few classes in it whenever the UI node needs items not found in the main theme. This lets Godot use the parent theme's classes on UI when the child theme does not override the parent element. This is because Godot lets a UI scene inherit the settings of a theme in it's parent even if it has a theme of it's own. The parent's theme's class will be used as long as a child node's theme does not contain it. A good example of how we use this feature of Godot's UI is in the main menu. ![](https://lemmy.ml/pictrs/image/tupXRzPFgN.png) In the main menu are large rectangular buttons I call prime buttons. These buttons do not look like any other buttons in the Moonwards project. The best way to handle this using themes is to set each button to use a PrimeButtons theme while the scene root uses the main Moonward's theme. This allows the prime buttons theme to only change the specific items it needs to without overcomplicating things. ![](https://lemmy.ml/pictrs/image/0HB0DMEtuZ.png) ![](https://lemmy.ml/pictrs/image/PMVXl1ZJWg.png) Notice how many item classes are in the Main theme in the top picture. Now look at how the Prime Buttons theme in the bottom picture only has 2 item classes in it (Button and Label). A node with the PrimeButtons theme will override the Button and Label classes in MainMoonwards theme but inherit all the other MainMoonwards theme classes. Later down the line I would like to implement some useful tricks that are possible in the Godot engine into Moonwards. I will talk about these now. One of them is easily changing font size in a running game. All you have to do is edit the resource that all your UI nodes are using and the change will percolate to the other nodes. Just make sure that the resource is not 'local to scene' as that option disables the ability for all nodes to inherit the resource changes. ![](https://lemmy.ml/pictrs/image/b0lb4c9uf2.mp4) We can even completely change what font is used while the game is running lol. All you have to do is create a new DynamicFontData and pass that to all DynamicFont's your game uses' font_data propery. ![](https://lemmy.ml/pictrs/image/dvFDkPTON4.mp4) If you want to see a basic example of the code needed to implement the tricks I just wrote about, please download the project files here: https://github.com/Zach777/Godot-Font-And-Size-Changing-Example Well thanks for reading all that. This has been my first time writing in a blog style format for my own fun. I hope it was not too evident it was my first time lol. Either way, here are the social media accounts that are relevant for this post below. Zach777's Mastodon account: https://fosstodon.org/web/accounts/280522 Zach777's Twitter account: https://twitter.com/xXZach777Xx Moonwards Twitter account: https://twitter.com/moonwards1 Moonwards community : https://lemmy.ml/c/moonwards If you have a Reddit account, please consider upvoting the post on Reddit: https://www.reddit.com/r/godot/comments/lz6ymm/some_tips_tricks_and_best_practices_for_ui/

    6
    0
    www.ivoyager.dev

    Github page: https://github.com/ivoyager You can view all of a planets' moon(s). All to scale. Really neat project.

    11
    0

    I am one of the devs of Moonwards and I would like for Moonwards to eventually have a presences on Lemmy. So I went ahead and created the community.

    7
    0
    www.moonwards.com

    Hi all. I am a dev of Moonwards. The alpha is for viewing the architecture and playing with our Rover. Networking works and the public server is up, but not much to do with friends aside from us devs being willing to give you a tour sometime. I wanted to let Lemmy know that the alpha was released as I saw the post about Moonwards before. Still buggy and Godot managed to screw up some of the exporting (my beautiful Main Menu pictures :sad but relieved face: ) .

    12
    1
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearZA
    Now
    13 35

    Zach777

    lemmy.ml

    Only uses fosstodon now: https://fosstodon.org/@Zach777