What is this?

2024.11.24 23:40 Onivlas What is this?

This post contains content not supported on old Reddit. Click here to view the full post
submitted by Onivlas to Pixelary [link] [comments]


2024.11.24 23:40 Mad_Choosy New joiner - tips and friends

Hi guys i just joined the game to get a reward if i manage to collect 40 fiends within 60days. Would appreciate any hints or strategy to achieve it. I can spend some for it but want to avoid going crazy.
I read you can get keys from friends in the game, would anyone share their usercode so that I can add you?
Thanks!
submitted by Mad_Choosy to BestFiends [link] [comments]


2024.11.24 23:40 RepresentativeTree57 Jalapeño???

Jalapeño??? Tell me I wasn't the only one who, when they saw ALESSIO, was reminded of Alejandro.
submitted by RepresentativeTree57 to DisventureCamp [link] [comments]


2024.11.24 23:40 GindGamerShack Video out.

https://youtu.be/LyEUZt2k4Ds?si=NYZhol_s33muhgCP Enjoy. Laugh at me. Do not subscribe
submitted by GindGamerShack to Shadowfight3 [link] [comments]


2024.11.24 23:40 Cms123-2024 success story!!

Hi guys!!! I wanted to make a (partial) success post! For a little backstory, I’ve been trying to manifest my ex back for a little under 2 years now. I didn’t really know what I was doing for the first year which is why it took so long. Anyway, we live in different states since I go to college in a different state than our home state. A few months ago I had tried to impress my subconscious that he would come visit me in my state, and then in the middle of me trying to do this, things between us got kinda dry. So i said whatever, whatever happens happens.
This next part isn’t super relevant, but kinda crazy to me! I had just switched my major and met with a professor to have him help me with meeting people who are in the career of my new major. He told me to come into one of the locations so I could meet them in a few weeks (it’s a big establishment for athletes but won’t say for privacy) . I was messaging with SP saying I will be at that gym soon and he told me he might be coming to this gym soon! I was like woah this is crazy. Then last week out of the blue my SP told me he was coming to my state to visit the gym (which is like 30 minutes away from me). I really wanted to see him and when I asked him, be told me it would be hard since he will be busy. But I persisted and told myself what day we would hangout.
We ended up hanging out that exact day that I said we would, and I found out he is moving to my state, 30 minutes away from me. Now I will be able to see him a lot more instead of doing a long distance type thing. I am going to continue working on the new story and ignore my 3D.
I’m super proud of myself for persisting even when things were tough, I can’t wait to see where me and my SP will go. This is your sign to persist through it all and it will come to you!!!
submitted by Cms123-2024 to lawofassumption [link] [comments]


2024.11.24 23:40 Far_Paint5187 How to load a TextureRect from a PackedScene's Resource/export (Or alternative)

How to load a TextureRect from a PackedScene's Resource/export (Or alternative) I've been struggling with this issue which is the last step to making my buy cards for building towers more modular. The idea is to pull the data from an instanced packed scene and then load the scene's resources into the data which is displayed on the UI for buying the tower. Eg. Title, Description, Stats, etc. The issue I'm having is that my placeholder icon on the card is a TextureRect which I believe makes sense since it needs to scale with the UI. But when I add an image to the packed scene as export it must be of the type CompressedTexture2D. I cannot simply assign the compressed image to the TextureRect. Nor can I figure out a way to convert it. I've found how to load the image from the filesystem, but that's not what I'm doing. I'm loading the image directly from the instanced scene.
Is there a way to convert this into something useable for texturerect? Or is the a better way I should be doing this?
https://preview.redd.it/8kg3c3snpx2e1.png?width=592&format=png&auto=webp&s=3e12113c7afa26aeb6ec5f1c7812716459d4665e
class_name TowerEntity extends Node2D u/export var entity_group : EntityGroups.Groups u/export var Icon : CompressedTexture2D u/export var description : ItemDescription u/export var stats : TowerStatSheet class_name ItemDescription extends Resource u/export var icon : CompressedTexture2D u/export var title : String u/export var description : String 
Buy Card Node
extends Control signal structure_built u/onready var build_manager : BuildManager = BuildManager u/onready var item_scene : PackedScene = load("res://towers/Defenses/rifle_turret.tscn") u/onready var item_title : RichTextLabel = $MarginContaineVBoxContaineTitleArea/StructureName u/onready var item_icon : TextureRect = $MarginContaineVBoxContaineContentArea/Hbox/SpriteMarginContaineItemSprite u/onready var item_descripiton : RichTextLabel = $MarginContaineVBoxContaineContentArea/Hbox/VBoxContaineDescription u/onready var item_range : RichTextLabel = $MarginContaineVBoxContaineContentArea/Hbox/VBoxContaineHBoxContaineVBoxContaineRange u/onready var item_damage : RichTextLabel = $MarginContaineVBoxContaineContentArea/Hbox/VBoxContaineHBoxContaineVBoxContaineDamage u/onready var item_price : int func _ready() -> void: build_card() func build_card(): var instantiated_scene = item_scene.instantiate() item_title.text = instantiated_scene.description.title item_descripiton.text = instantiated_scene.description.description var compressed_image = instantiated_scene.description.icon #var texture_icon = Image.new() var texture_icon = compressed_image.get_image() item_icon = texture_icon func _on_button_pressed(): build_manager.build_structure(item_scene) emit_signal("structure_built") 
The bottom is my working code so far, and I'm just not sure where to go from here. I need to take the instantiated_scene.description.icon and assign that value to my Item_icon which will populate the image on the buy card. I'm open to criticism if there is a better way to do this. The idea is having the UI manager or some other node populate buy cards on the fly by iterating through a packed scenes resource, adding a new card child to the scene and then setting it's packedscene to it's current element in the iteration. This way whenever I create a new tower all I have to do is add the scene to this resource and a buycard should be created automatically.
I've been struggling with this issue which is the last step to making my buy cards for building towers more modular. The idea is to pull the data from an instanced packed scene and then load the scene's resources into the data which is displayed on the UI for buying the tower. Eg. Title, Description, Stats, etc. The issue I'm having is that my placeholder icon on the card is a TextureRect which I believe makes sense since it needs to scale with the UI. But when I add an image to the packed scene as export it must be of the type CompressedTexture2D. I cannot simply assign the compressed image to the TextureRect. Nor can I figure out a way to convert it. I've found how to load the image from the filesystem, but that's not what I'm doing. I'm loading the image directly from the instanced scene.
Is there a way to convert this into something useable for texturerect? Or is the a better way I should be doing this?
https://preview.redd.it/8kg3c3snpx2e1.png?width=592&format=png&auto=webp&s=3e12113c7afa26aeb6ec5f1c7812716459d4665e
class_name TowerEntity extends Node2D var entity_group : EntityGroups.Groups var description : ItemDescription var stats : TowerStatSheet class_name ItemDescription extends Resource var icon : CompressedTexture2D var title : String var description : String 
Buy Card Node
extends Control signal structure_built var build_manager : BuildManager = BuildManager var item_scene : PackedScene = load("res://towers/Defenses/rifle_turret.tscn") var item_title : RichTextLabel = $MarginContaineVBoxContaineTitleArea/StructureName var item_icon : TextureRect = $MarginContaineVBoxContaineContentArea/Hbox/SpriteMarginContaineItemSprite var item_descripiton : RichTextLabel = $MarginContaineVBoxContaineContentArea/Hbox/VBoxContaineDescription var item_range : RichTextLabel = $MarginContaineVBoxContaineContentArea/Hbox/VBoxContaineHBoxContaineVBoxContaineRange var item_damage : RichTextLabel = $MarginContaineVBoxContaineContentArea/Hbox/VBoxContaineHBoxContaineVBoxContaineDamage var item_price : int func _ready() -> void: build_card() func build_card(): var instantiated_scene = item_scene.instantiate() item_title.text = instantiated_scene.description.title item_descripiton.text = instantiated_scene.description.description var compressed_image = instantiated_scene.description.icon #var texture_icon = Image.new() var texture_icon = compressed_image.get_image() item_icon = texture_icon func _on_button_pressed(): build_manager.build_structure(item_scene) emit_signal("structure_built") 
The bottom is my working code so far, and I'm just not sure where to go from here. I need to take the instantiated_scene.description.icon and assign that value to my Item_icon which will populate the image on the buy card. I'm open to criticism if there is a better way to do this. The idea is having the UI manager or some other node populate buy cards on the fly by iterating through a packed scenes resource, adding a new card child to the scene and then setting it's packedscene to it's current element in the iteration. This way whenever I create a new tower all I have to do is add the scene to this resource and a buycard should be created automatically.
submitted by Far_Paint5187 to godot [link] [comments]


2024.11.24 23:40 Blacklightning22 My first completed memory!

My first completed memory! submitted by Blacklightning22 to DreamlightValley [link] [comments]


2024.11.24 23:40 DaRock1949 Old Regency nat gas fireplace pilot and main issues

Hi. Bought a late '90's house with an old (original) natural gas fireplace that is having some issues with pilot and main flame. Had no issues last winter but the past week I've had the pilot go out a few times, and have had the main go out today while it was running. No trouble relighting. Have also had recent issues with getting the main flame going. Thought maybe a the switch but beginning to think it's the gas valve itself. Suppose it could be the thermocouple to as I doubt this unit has been services in a long time if ever.
No instructions with the unit, which is that old even Regency doesn't have the documentation anymore and recommended replacement. Talked to a local fireplace and tile dealer and they recommended replacing the unit (big surprise there). But as you probably all know, replacing isn't cheap either.
Hoping someone has some suggestions to try and I can post more info if needed. Don't have any nat gas fireplace experience as all my previous houses had wood fireplaces and am comfortable working on this stuff.
Thanks in advance.
submitted by DaRock1949 to Fireplaces [link] [comments]


2024.11.24 23:40 inflicted13 Noob here plz don't bash me...

I'm thinking about getting one,I'm a newer streamer but I travel alot and I stream Call of Duty so I need something I can play MW2 and 3 and hopefully BO6 on when I travel to still make content.
So first question is is the only way to play those games right now is with GeForce cloud
And 2nd would the ROG Ally X be a better option for what I need?
submitted by inflicted13 to SteamDeck [link] [comments]


2024.11.24 23:40 MichaelNana4ever Character Concept

Hello, everyone. I have a character concept that I think would fit well in the Marvel Universe. Meet The Badger AKA Hank Klombo.
Backstory
Hank Klombo grew up in northern Canada, raised by his single father, a former military tracker of mixed African descent who instilled in him a deep respect for nature and survival skills. As one of the few Black families in the area, they often faced prejudice, which shaped Hank's resilience and defiance against injustice. His father was tragically killed in an accident during a rescue mission, leaving young Hank alone in the wilderness.
For years, Hank survived off the land, honing his instincts and skills. He became known in local legend as the “Badger Kid,” a feral child with uncanny abilities. Eventually, he was captured by Project Hades and subjected to genetic splicing experiments. They aimed to create the ultimate hunter-soldier by combining his already-sharp human instincts with the durability, aggression, and adaptability of a honey badger. Hank escaped, but the experiments left him with fragmented memories and enhanced abilities that make him both a marvel and a monster in his own eyes.
Enhanced Abilities

  1. Retractable Claws: Hank’s claws are bone-like but tipped with an ultra-dense keratin, making them sharp and strong enough to tear through steel or armor. His claws emerge from the knuckles, reinforced by his badger-enhanced durability.
  2. Feral Agility: His reflexes and speed are unmatched, allowing him to combine his claws with martial arts and feral combat moves.
  3. Heightened Senses: His sense of smell and hearing are so acute that he can detect fear pheromones or hear distant heartbeats, making him a terrifying predator.
  4. Enhanced Durability: Like a honey badger, Hank has thick, nearly impenetrable skin, allowing him to endure bullets, slashes, and even fire with minimal damage.
  5. Digging Mastery: Hank can dig through most terrains (soil, concrete, or even weaker metals), making him a powerful infiltrator and escape artist.
  6. Hyper Jump and Double Jump: His enhanced leg strength lets him leap long distances and perform mid-air acrobatics, giving him unparalleled mobility in combat and exploration.
  7. Tracking Sense: Hank has a hyper-sensitive nose and ears, allowing him to track prey (or enemies) across vast distances, even detecting pheromones or subtle shifts in the air.
  8. Wall Climbing: He can scale vertical surfaces with his retractable claws, making him a deadly predator who can attack from unexpected angles.
  9. Regeneration: While not as fast as Wolverine’s healing factor, Hank’s regenerative abilities keep him alive through fatal injuries, though they come with extreme pain.
  10. Ferocious Combatant: When cornered, Hank enters a "badger rage" state, increasing his strength, speed, and durability for a short time, making him a terrifying foe.
Personality
Hank’s identity as a Black Canadian adds layers to his character. He’s seen the harsh side of humanity in both rural isolation and the urban jungles of Canada, making him deeply empathetic toward outsiders and underdogs:
Connection to Community: While Hank is a loner, he has a soft spot for marginalized communities and indigenous peoples, respecting their connection to the land and their struggles against corporate exploitation.
Conflict with Self: Hank constantly wrestles with his primal instincts and humanity, fearing that he might lose himself to the beast within. He often deal with this by giving dark jokes.
Appearance
Hank’s design should reflect his heritage, his feral nature, and his Canadian roots:
Physical Traits: Hank is broad-shouldered and muscular, with scars across his body from the Project Hades experiments. His hair is cropped short, and his skin has a faint shimmer in the light, a side effect of his genetic splicing.
Suit Design: His tactical suit is minimalist and practical, with black and white badger-stripe patterns across the chest and arms. It has subtle nods to his Canadian roots, like maple leaf symbols on his gloves or boots.
Potential Stories
  1. The Frozen Legacy: Hank uncovers a hidden Project Hades lab deep in the Canadian wilderness, where new experiments have created monstrous hybrids threatening local communities.
  2. The Claw Confrontation: A crossover with Wolverine where the two clash over their methods. Hank represents survival and adaptability, while Wolverine represents raw endurance and experience. Their philosophies clash, but they ultimately team up to stop a common enemy.
  3. Urban Shadows: Hank is pulled into the city to help an old friend fight off a crime syndicate using mutant-enhanced mercenaries, forcing him out of his natural habitat.
The Badger and the Marvel Universe
Hank fits into the Marvel Universe as a gritty, feral antihero with a heart. His distinct personality and unique abilities allow him to stand out while exploring new themes:
His Canadian Identity: Marvel’s Canadian heroes like Wolverine and Alpha Flight have often been linked to nature and nationalism. Hank’s Black identity adds a new layer to those stories, blending survivalism with cultural resilience.
Themes of Resistance: Hank’s fight against Project Hades parallels real-world themes of exploitation and resilience, making him relatable and inspiring.
That was it. Now, I want some feedback. What did you guys like about him? Anything that could make him more unique? Btw, I don't have a drawing of him or something like that. So if you are a talented artist, draw a picture if you want. Can't wait to see it😄
submitted by MichaelNana4ever to marvelstudios [link] [comments]


2024.11.24 23:40 rooksFX14 If my PDC is for manual transmission, can I apply for non pro driver's license for automatic?

If my PDC is for manual transmission, can I apply for non pro driver's license for automatic? Afaik naman yes. But is my practical exam going to be automatic?
Sorry for I don't know which flair to use since this is a question. Was about to ask sa AskPH but dapat the question starts w/ "what" or "why". 🙃
submitted by rooksFX14 to Philippines [link] [comments]


2024.11.24 23:40 Ok-Elephant6547 Kyogre 8679 3545 9305

submitted by Ok-Elephant6547 to PokemonGoRaids [link] [comments]


2024.11.24 23:40 Sufficient_Prompt888 I too am in this sub neighbour

I too am in this sub neighbour submitted by Sufficient_Prompt888 to okbuddyvicodin [link] [comments]


2024.11.24 23:40 geekyplug Lifetime Discount Fable 2024

Do you want to create interactive demos and step-by-step guides for better conversions?
If yes then Fable is for you and using our SPECIAL LINK (Fable Lifetime discount code attached), you will get 86% OFF for a LIMITED TIME.
submitted by geekyplug to wpdeal [link] [comments]


2024.11.24 23:40 HndsDwnThBest Rinse out sponge filter even if the flow is fine?

Curious if yall rinse out your sponge filter during water changes every time or just sometimes? The flow is fine and its doesn't look overly covered with gunk.
I haven't rinsed it out in over a month but do weekly water changes and vacuum. My fish, inverts and plants have never been happier! And the shrimp are making babies like crazy and love grazing on it. The tank is over 1 year old and the filter around 6 months old.
Thoughts? Advice?
submitted by HndsDwnThBest to Aquariums [link] [comments]


2024.11.24 23:40 Jeeperscrow123 What’s your go to DoorDash for dinner when you return home from a client site in evening?

submitted by Jeeperscrow123 to consulting [link] [comments]


2024.11.24 23:40 Stunning-Stress4468 Napiszę do waszej koleżanki na snapie zapraszam

Napiszę do waszej koleżanki na snapie zapraszam submitted by Stunning-Stress4468 to SexyPolishInfluYoutub [link] [comments]


2024.11.24 23:40 gpetery Silk and Satin Fetish Group?

Do you know any forums, websites, group chat or flat forms for people who are interested in Silk and Satin Fetish? I am a one of these type people and it is hard for me to find people nearby shared same interests in the US. Thank you!
submitted by gpetery to askgaybros [link] [comments]


2024.11.24 23:40 Risky_Sport26 Who else thinks that sanitary armor doesn't make sense?

Bc if Barry wanted to be the god of speed shouldn't he have like a suit that doesn't have parts just sticking out to make it as aerodynamic as possible and bot have resistance on those extra parts?
submitted by Risky_Sport26 to FlashTV [link] [comments]


2024.11.24 23:40 nitedstatesofamurica Put these 4 in a Room, who is coming our alive?

View Poll
submitted by nitedstatesofamurica to Centaura_Roblox [link] [comments]


2024.11.24 23:40 Austinomino Live playing nhl 25

Live playing nhl 25 submitted by Austinomino to Twitch_Startup [link] [comments]


2024.11.24 23:40 HerbOnReddit Kieg just posted a new video on YouTube: Like Him → Balloon

Kieg just posted a new video on YouTube: Like Him → Balloon submitted by HerbOnReddit to KiegKillsReality [link] [comments]


2024.11.24 23:40 Hahahobbit Thanksgiving chicken.

Hi, my gf and I are long distance so long story short we will not be together for thanksgiving so we are doing a mini early one tomorrow (Monday 11/25) I just need to make sure that if a chicken recipe calls for a cast iron skillet (which I don’t have) is it ok to switch to a ceramic coated casserole like dish? Or do I need to buy a skillet while I go shopping? Recipe is by Plays Well With Butter on YouTube.
submitted by Hahahobbit to cookingforbeginners [link] [comments]


2024.11.24 23:40 DanceEmber 241124 Tinytown News: ATEEZ Becomes The 3rd K-Pop Artist To Have Multiple Albums Reach No. 1 On The Billboard 200

241124 Tinytown News: ATEEZ Becomes The 3rd K-Pop Artist To Have Multiple Albums Reach No. 1 On The Billboard 200 submitted by DanceEmber to ATEEZ [link] [comments]


2024.11.24 23:40 Salty-Salamander-286 Can someone help me find this person?

Can anyone find a British army record for Eric grace who served in ww2 for the desert rats dm me for more details if interested
submitted by Salty-Salamander-286 to Genealogy [link] [comments]


https://google.com/