Fizz

joined 2 years ago
MODERATOR OF
[–] Fizz@lemmy.nz 3 points 16 hours ago

First of all that's 2mins it's not a movie. I'll give some feedback as if it's a trailer for a movie.

Don't introduce so many characters in the trailer just give a teaser of what the plot will be.

The shots are to similar, every shot can't be a zoom in shot of a person looking into the camera. Need to mix it up with some side shots or panning actions shots.

Blending the shots together. They should lead into each other. The timing the beat the little story you're telling it should flow from one beat to the next.

[–] Fizz@lemmy.nz 17 points 16 hours ago (4 children)

At first I was thinking relax no one gets fired over a complaint the manager hates the customers as much as you do. Then he fucking bit the customer ok yeah you are getting fired.

[–] Fizz@lemmy.nz 5 points 17 hours ago (1 children)

Rhel if you are using professionally. Their enterprise support staff are wizards when it comes to finding the cause of random issues.

[–] Fizz@lemmy.nz 8 points 18 hours ago

what graphics card do you have? It should be the same across all distro's. You either have AMD/Intel and your driver is in the kernel or you have nvidia and you can run a one line command to install your driver.

[–] Fizz@lemmy.nz -1 points 20 hours ago (1 children)

Oh yeah because thats the issue here..

[–] Fizz@lemmy.nz 10 points 20 hours ago (2 children)

Honestly this isn't to crazy. I know some people like this who moved to Thailand and Indonesia and they work in tourism and their lifestyles are pretty much exactly like this except taking a few people out fishing or up a mountain.

You could probably even do this in the us if you found the right place. You could definitely do it in nz if you pretended like you were looking for work.

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

I can see why some would consider it playable but it was unplayable for me, sub 60fps and the graphics had to be so low the textures looked terrible. Or I had to enable frame gen which also makes it look like shit.

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

You would have brought it anyway. I like piracy it's fine but you don't have to cope and act like piracy was doing them a favor.

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

Don't try do it all at once. It takes a few years usually. I recommend starting with changing your search engine and browser.

Then setup a new email and forward emails from your old email to it while you slowly migrate it. Then go service by service and look at the alternatives. If you don't like any its fine to stay on Google just do what you can every thing you remove is money out of Google pocket.

If you want to go full self-hosted there's this guide:

https://wiki.futo.org/index.php/Introduction_to_a_Self_Managed_Life:_a_13_hour_%26_28_minute_presentation_by_FUTO_software

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

People are really bad with misretelling court cases. The amount of times I've read "this guy was arrested for wearing a silly hat!" Only to look deeper and find out he was threatening to stab people or something.

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

Marginal Tax brackets drive me insane especially my parents constantly misunderstand and think a payrise will make them lose money.

They don't understand that the tax is only paid on the money earned in that bracket. So going up 5% isn't your total income being taxed an extra 5% its only the money earned on that bracket that is taxed at the higher rate.

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

Even on linux I'd give the same recommendation of 16gb for gaming and 32gb for no worries.

 

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 ›