Fizz

joined 2 years ago
MODERATOR OF
[–] Fizz@lemmy.nz 4 points 35 minutes ago
  • At home I use the mouse right handed with the left and right click on the normal buttons.
  • At work I use the mouse left handed and have the left and right click swapped.

I do it because my right hand is getting sore from clicking but at home I still want to play games.

[–] Fizz@lemmy.nz 8 points 1 hour ago

I mean who could have seen that coming. I am playing the worlds smallest violin for all the people affected.

[–] Fizz@lemmy.nz 5 points 1 hour ago

They are good. Users don't update on their own.

[–] Fizz@lemmy.nz 7 points 19 hours ago

Dont do that, dont give me hope

[–] Fizz@lemmy.nz 1 points 19 hours ago* (last edited 19 hours ago)

For other people its a mix of the following, talk to people on whatsapp/wechat/messanger/facetime and scroll instagram/tiktok/x/facebook/reddit

For me I dont have mobile data so if im out of the house im listening to music or listening to a video I downloaded on Grayjay. If for some reason I am using my phone at home im probably using it as a tv remote(kde connect to my steamdeck) or watching porn.

[–] Fizz@lemmy.nz 9 points 19 hours ago

Learning to code and building a game in Godot. I've tried a few times before but all the coding projects I wanted to do required some form of interaction with a web browser and as soon as it got to that point it became so unenjoyable. But making a game has been very fun. My game is pretty shit right now and adding a feature breaks everything. I'm struggling to plan ahead which is a bit frustrating but it is what it is.

Learning the Microsoft Intune stack to fix the bad deployment process at work. Switching to full intune will actually make it easier to support mac and linux as alternative devices so im excited about that. Its feels bad knowing that this is destroying all the competition in this sector but its all closed source windows shit anyway so fuck em.

[–] Fizz@lemmy.nz 1 points 19 hours ago (1 children)
[–] Fizz@lemmy.nz 3 points 1 day ago

Fine giving away all that info it makes sense tk send that info to websites. There is no way that fingerprint result is accurate considering half the stats were wrong on Firefox.

[–] Fizz@lemmy.nz 1 points 1 day ago

Yeah if they're on pc they can talk shit about steam and Gabe. I do not like steam I think its pretty shit compared to what we could have

[–] Fizz@lemmy.nz 20 points 1 day ago* (last edited 1 day ago) (2 children)

I doubt think you (the imaginary ps5 player im arguing with in my head) can say shit about steam when you have to pay a subscription to connect your computer to the internet.

[–] Fizz@lemmy.nz 25 points 1 day ago (2 children)

White supremacist memes are mainstream at this point and have been for a long time. I wish the article highlighted the intentional nature of these groups. These are not organic trends(during the start seeding and boosting phase).

Once they get picked up they do big numbers and the scary part is they dont just get recommended to people deep in the rightwing pipeline.

[–] Fizz@lemmy.nz 15 points 1 day ago (6 children)

If im talking with a fellow PC gamer we can criticize Gabe. But if im talking to any console gamer you can bet your ass I've armored up and defending my king. I wont accept any Gabe slander from a console gamer.

 

Edit: ah i was reading an old doc because the reddit comment I saw was 6 years old. The property is get_property_list()

I have a script that is a global it contains a bunch of dictionaries that describe items. I need a way to get a list of the different types.

Searching for solutions I found https://docs.godotengine.org/en/3.2/classes/class_script.html#class-script-method-get-script-property-list

but I cant seem to get it working. Godot says "Function "get_script_property_list()" not found in base self"

Example of the what im trying to get a list of

var tile_dict_grass = {
	"name": "grass",
	"source": 1,
	"atlas": Vector2i(1,0),
	"move_speed": 0.80,
	"path_cost": 2,
	"fertility": 1,
	"cleanliness": 1.5,
	"flammability": 0.60,
	"build_categories": "all",
	"solid": false
}
var tile_dict_rich_soil = {
	"name": "rich soil",
	"source": 1,
	"atlas": Vector2i(1,0),
	"move_speed": 0.80,
	"path_cost": 2,
	"fertility": 1.4,
	"cleanliness": -1.0,
	"flammability": 0.0,
	"build_categories": "all",
	"solid": false
}

How im trying to get it.

func get_tile_dict():
	var property_list = self.get_script_property_list()
	var tile_list = []
	for attr in dir(self):
		if attr.startswith('tile_dict'):
			value = getattr(self, attr)
			tile_list.append(value)
	return tile_list
 

I have a characterbody2d and I want to display the equipment being worn. So this equipment would need to be swapped around during game play.

I currently am using several sprites layered. How is best to handle this situation?

 

I'm using lutris to run Guild Wars and I'd also like to run guild wars toolbox which needs to be run after guild wars has already started.

I tried running guild wars and toolbox as different lutris installs but toolbox cant see the guild wars process.

Does anyone know how this can be done?

view more: next ›