• 13 Posts
  • 35 Comments
Joined 2Y ago
cake
Cake day: Dec 21, 2020

help-circle
rss

Pretty sure you could do this by adding site blockers to your search query.


That map has horrible text readability.


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.




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


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.


Watched some of the vod. Looked really cool!


Easy work around. Setup a vpn and have that person connect to you /s


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.


Never really took the time to study how xargs works. I guess now is the time to do that lol.


Rip me not seeing this. I did not see it anywhere else on the Fedi lol.


SRB2Kart is one of my favorite games period.


That game is a lot of fun actually. Needs more interactive blocks though.




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.


This is awesome looking. Seems like a fun way to learn about basic Linux security with a common tool.


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.



Yeah it costs too much for me to ever buy it. Maybe I can hack it together someday? It is open source lol


This was an excellent example of why C is not a safe language lol.


I actually learned that the best way to subscribe to communities from another instance through search is to do !community_name@server_instance . Thanks for your response though.



How so? I have mostly seen the admins behave nicely toward different views.



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

Hey some of us just want to play Titanfall 2 on our OS of choice.


This game looks cool. Thanks for linking it.


I was trying to watch the talks earlier bit could not find the livestream link. Where do you go to watch the streams?


Honestly that is a good number. Valve has really helped out the Linux gaming community.


Will Lemmy support mastodon accounts?
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.


I hope I crossposted this correctly lol. I just hit copy and posted to this community.


Godot UI theme and resource handling tips used in Moonwards. Plus a couple tips for editing font in game.
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/

Godot UI theme and resource handling tips used in Moonwards. Plus a couple tips for editing font in game.
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/

It is more about Linux than FOSS in general tbh. Lwn.net is great, but it is not general FOSS world focused.


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

Wait suck is on the slur filter? Really?

Edit: Guess not lol.

Edit2: Wow there really is no reason to complain about that slur filter list. Keep it.


Motion sickness in this would be awesome.


Tbh an open source game should lean hard into modding. No other game setup makes it as easy to mod. Add a lot of support for mods and make it easy to edit source code and I think the open source part of the game will be a draw.


Among Us is so hard for colorblind folk. I don’t know why they don’t add some sparkly text or something to differentiate the colors too.


@Zach777toLibre Culturelotide
link
fedilink
1
edit-2
2Y

So this is like federating the old school forum format? Sounds neat.

Edit: Just looked and it is more Reddit style than old school forums.


It being hard to federate with other serveices is my main complaint about Activity Pub. There really should be a better way to make a home server that can interact with absolutely any other federated site.

In my opinion anyway.


First post on the Moonwards community of Lemmy!
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.

This is a gaming community that does not list that as a focus. Why would my video I linked be related to that?



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: ) .

Moderates