PC?

2025.01.22 15:49 TrveKeev PC?

PC? Size 34
submitted by TrveKeev to TrueReligionJeans [link] [comments]


2025.01.22 15:49 OrganicRope7841 For 3D Games: Codes so the public can use the Coordinates Copier & Picker for RoseBud AI

Goal: Make it easier for Game Developers to pick and choose where items and characters will be placed.
How to input: Just Import this whole post via copy/paste into the message bar of rosebud AI and she'll add it for you, or add the code yourself.
Let's create the coordinates picker: Here's what we'll do:

_____________________________________________________________________
Code to create the coordinates picker: <<<<<<< HEAD
const parentDiv = document.getElementById('renderDiv');
let canvas = document.getElementById('threeRenderCanvas');
=======
const parentDiv = document.getElementById('renderDiv');
// Create position picker button
const positionPickerButton = document.createElement('button');
positionPickerButton.textContent = 'Choose Position';
positionPickerButton.style.position = 'absolute';
positionPickerButton.style.top = '10px';
positionPickerButton.style.left = '10px';
positionPickerButton.style.zIndex = '1000';
positionPickerButton.style.padding = '8px 16px';
positionPickerButton.style.backgroundColor = '#4CAF50';
positionPickerButton.style.color = 'white';
positionPickerButton.style.border = 'none';
positionPickerButton.style.borderRadius = '4px';
positionPickerButton.style.cursor = 'pointer';
parentDiv.appendChild(positionPickerButton);
let canvas = document.getElementById('threeRenderCanvas');
>>>>>>> updated
____________________
<<<<<<< HEAD
const scene = new THREE.Scene();
const world = new CANNON.World();
=======
const scene = new THREE.Scene();
const world = new CANNON.World();
// Position picker state
let isPositionPickerActive = false;
let mousePosition = new THREE.Vector2();
const raycaster = new THREE.Raycaster();
>>>>>>> updated
__________________________
<<<<<<< HEAD
window.addEventListener('resize', onWindowResize);
const resizeObserver = new ResizeObserver(onWindowResize);
resizeObserver.observe(parentDiv);
=======
window.addEventListener('resize', onWindowResize);
const resizeObserver = new ResizeObserver(onWindowResize);
resizeObserver.observe(parentDiv);
// Position picker event listeners
positionPickerButton.addEventListener('click', () => {
isPositionPickerActive = !isPositionPickerActive;
positionPickerButton.style.backgroundColor = isPositionPickerActive ? '#f44336' : '#4CAF50';
positionPickerButton.textContent = isPositionPickerActive ? 'Cancel Position' : 'Choose Position';
canvas.style.cursor = isPositionPickerActive ? 'crosshair' : 'default';
});
canvas.addEventListener('click', (event) => {
if (!isPositionPickerActive || !character || !characterBody) return;
// Calculate mouse position in normalized device coordinates (-1 to +1)
const rect = canvas.getBoundingClientRect();
mousePosition.x = ((event.clientX - rect.left) / rect.width) * 2 - 1;
mousePosition.y = -((event.clientY - rect.top) / rect.height) * 2 + 1;
// Update the picking ray with the camera and mouse position
raycaster.setFromCamera(mousePosition, camera);
// Calculate objects intersecting the picking ray
const intersects = raycaster.intersectObjects([terrain]);
if (intersects.length > 0) {
const point = intersects[0].point;
// Add a small offset to prevent clipping
point.y += characterConfig.height / 2;
// Update character position
characterBody.position.copy(point);
characterBody.velocity.set(0, 0, 0);
character.position.copy(point);
// Reset position picker state
isPositionPickerActive = false;
positionPickerButton.style.backgroundColor = '#4CAF50';
positionPickerButton.textContent = 'Choose Position';
canvas.style.cursor = 'default';
}
});
>>>>>>> updated
__________________________________________________________________ Code to create The Coordinates Copier: <<<<<<< HEAD
positionPickerButton.textContent = 'Choose Position';
positionPickerButton.style.position = 'absolute';
=======
positionPickerButton.textContent = 'Choose Position';
positionPickerButton.style.position = 'absolute';
// Create copy coordinates button
const copyPositionButton = document.createElement('button');
copyPositionButton.textContent = 'Copy Position';
copyPositionButton.style.position = 'absolute';
copyPositionButton.style.top = '10px';
copyPositionButton.style.left = '150px';
copyPositionButton.style.padding = '8px 16px';
copyPositionButton.style.backgroundColor = '#2196F3';
copyPositionButton.style.color = 'white';
copyPositionButton.style.border = 'none';
copyPositionButton.style.borderRadius = '4px';
copyPositionButton.style.cursor = 'pointer';
copyPositionButton.style.zIndex = '1000';
parentDiv.appendChild(copyPositionButton);
>>>>>>> updated ___________________ <<<<<<< HEAD
});
// Start animation
=======
});
// Copy position to clipboard function
function copyPositionToClipboard() {
if (!character) return;

const position = character.position;
const coordinateString = \${position.x.toFixed(2)}, ${position.y.toFixed(2)}, ${position.z.toFixed(2)}`;`

navigator.clipboard.writeText(coordinateString).then(() => {
// Provide visual feedback
const originalText = copyPositionButton.textContent;
const originalColor = copyPositionButton.style.backgroundColor;
copyPositionButton.textContent = 'Copied!';
copyPositionButton.style.backgroundColor = '#4CAF50';
setTimeout(() => {
copyPositionButton.textContent = originalText;
copyPositionButton.style.backgroundColor = originalColor;
}, 1000);
}).catch(err => {
console.error('Failed to copy coordinates:', err);
copyPositionButton.textContent = 'Failed to copy';
copyPositionButton.style.backgroundColor = '#f44336';
setTimeout(() => {
copyPositionButton.textContent = 'Copy Position';
copyPositionButton.style.backgroundColor = '#2196F3';
}, 1000);
});
}
// Add click event listener for copy button
copyPositionButton.addEventListener('click', copyPositionToClipboard);
// Start animation
>>>>>>> updated
________________ This implementation:
  1. Adds a new "Copy Position" button next to the position picker button
  2. Creates a function to copy the current character position to clipboard
  3. Formats the position coordinates with 2 decimal places
  4. Provides visual feedback when copying (button text and color change)
  5. Handles errors and provides feedback if copying fails
  6. Automatically reverts button state after 1 second
  7. The copied text will be in the format: "x, y, z" (e.g., "10.50, 5.00, -3.25")
When you click the "Copy Position" button: submitted by OrganicRope7841 to RosebudAI [link] [comments]


2025.01.22 15:49 Comfortable_Cat4983 Stay Safe. Hamming My Ppl For 80🤡 (addy below)

Stay Safe. Hamming My Ppl For 80🤡 (addy below) submitted by Comfortable_Cat4983 to Scam_vendors [link] [comments]


2025.01.22 15:49 Beautiful-Onion794 Best Buy pick up I just did for some earbuds.

Best Buy pick up I just did for some earbuds. submitted by Beautiful-Onion794 to InstacartShoppers [link] [comments]


2025.01.22 15:49 TaleofWoes What does my dream brand loyalty vehicles say about me?

What does my dream brand loyalty vehicles say about me? • 2013 - ‘14 Ford Raptor • 2013 - ‘18 Ford Fiesta ST • 2014 - ‘23 Ford Transit Connect Passenger • 2003 - ‘04 Ford Mustang SVT Terminator Cobra • 2016 - ‘18 Ford Focus RS
submitted by TaleofWoes to regularcarreviews [link] [comments]


2025.01.22 15:49 mysterious_quartz Can you guys share pictures of your used night guards?

I know this may seem weird but I’ve been wearing a nightguard for six months now after my dentist told me I grind my teeth. I remember doing it a lot when I was a kid but since growing up I really didnt think I did it, but my dentist made me second guess myself.
Now it’s been a while and I have definitely made some impressions on my nightguard, but I really can’t tell if it’s from just my teeth resting on it or if I’m actually grinding it. To top it off ever since started wearing it (I got one of those OTC ones), I get random tooth pain here and there.
Now I am wondering if I should be wearing one at all. So I wanted to see what everyone’s used nightguards look like to see if it’s anything like mine, because it’s sure hard as hell to find pictures online
submitted by mysterious_quartz to bruxism [link] [comments]


2025.01.22 15:49 Worried-Lettuce607 18 skinny TN

I’d probably want to get and I only really have boxer briefs
submitted by Worried-Lettuce607 to WedgieMeetFinder [link] [comments]


2025.01.22 15:49 SK00GS Advice on when to pull the trigger?

I have been wanting a new car since around December 2023 and put together a plan/budget in May 2024. It’s now January 2025 (my planned purchase month) and I can’t seem to pull the trigger on actually buying the car. This would be the first car I have ever purchased as my current car I bought from my dad in high school.
I am looking to buy a Toyota Tacoma with the following requirements: 2019+, <85k mileage, 4wd or awd, <$32k.
Currently I have the full 32k saved up but am thinking about financing so I don’t use the majority of my savings at once. Currently making around 65k/year.
I have found a few good looking offers on carmax, Facebook marketplace, cars.com, etc… but can’t seem to pull the trigger on actually buying.
Questions: - Do you guys think now is a good time or should I still wait it out until I have more savings or a higher salary?

I really appreciate if any of you have answers to this. Thanks
submitted by SK00GS to whatcarshouldIbuy [link] [comments]


2025.01.22 15:49 PrimaryCrew6008 Pcos with insulin resistance

For my PCOS girlies. How did you lose weight with the help of semaglutide? I can't do Keto because I'm not the biggest fan of meat. What did you eat? Did you work out? How long did it take for you to lose weight? Did you cut out any foods? Did you fast? Sorry for all the questions. I need help, please! I just want to be healthier!!!
submitted by PrimaryCrew6008 to Semaglutide [link] [comments]


2025.01.22 15:49 Embarrassed_Abroad70 2025 Farmers Insurance Open picks, field, odds, predictions: Golf expert likes Keegan Bradley at Torrey Pines | Live Streams, Free Score & Result, Online Update, TV Channel Schedule and More 🔴

2025 Farmers Insurance Open picks, field, odds, predictions: Golf expert likes Keegan Bradley at Torrey Pines | Live Streams, Free Score & Result, Online Update, TV Channel Schedule and More 🔴 submitted by Embarrassed_Abroad70 to fotbals [link] [comments]


2025.01.22 15:49 Legitimate_Owl2584 Homens, o que fazem vocĂŞs desejarem uma mulher?

Homens, o que fazem vocĂŞs desejarem uma mulher?
submitted by Legitimate_Owl2584 to relacionamentos [link] [comments]


2025.01.22 15:49 justin_quinnn Joe Starkey: Are the Kansas City Chiefs the most hated team in American sports history?

Joe Starkey: Are the Kansas City Chiefs the most hated team in American sports history? submitted by justin_quinnn to Sports_News_Hub [link] [comments]


2025.01.22 15:49 vilomstren Home Depot Appliance Discount Code

Follow this link for Home Depot Appliance Discount Code. Access the latest deals and promotions by visiting the link, featuring a constantly updated list of coupons, promo codes, and discounts.
submitted by vilomstren to MementoOffers [link] [comments]


2025.01.22 15:49 Reptaaaaaaar Warning about the dangers of pulling an all nighter to try and reset your sleep schedule

I decided to stay awake all day yesterday after not sleeping the previous night to try and reset my sleep schedule. I managed to stay awake until 9pm last night before finally passing out. I woke up around 3am really needing to pee, so I went to the bathroom but I was still so tired I just sat down on the toilet to pee. As soon as I started though, I immediately woke up and realized I was actually sitting on the edge of my bed pissing all across the carpet.
Warning to everyone, you might make your who room smell like piss if you do this.
submitted by Reptaaaaaaar to GetOutOfBed [link] [comments]


2025.01.22 15:49 Defiant-Front-8085 Trades?

Trades? Looking to finish set 4 and 5. I included all of my extras!
submitted by Defiant-Front-8085 to Monopoly_GO [link] [comments]


2025.01.22 15:49 iridescentghxst Dream doll acquired ✨ Picture Day Frankie

Dream doll acquired ✨ Picture Day Frankie submitted by iridescentghxst to MonsterHigh [link] [comments]


2025.01.22 15:49 Own-Tomato-1791 Blacked out 65in tv

hi, I need help figuring out why my TV won’t operate is stuck on a half screen.
I took off the back piece. What do I need to do now? How do I repair it?
submitted by Own-Tomato-1791 to Hisense [link] [comments]


2025.01.22 15:49 Then_Marionberry_259 SDC's Male Growth Pills got a featured spotlight on Fox Business :D

SDC's Male Growth Pills got a featured spotlight on Fox Business :D submitted by Then_Marionberry_259 to MetalsOnReddit [link] [comments]


2025.01.22 15:49 y--a--s--h Apna riverfront shi chez hai 😁

submitted by y--a--s--h to kota [link] [comments]


2025.01.22 15:49 Conscious-Contest-76 New to wow looking for someone to play with

need someone to game with on wow im 23 yr im on stormrage
submitted by Conscious-Contest-76 to wow [link] [comments]


2025.01.22 15:49 UnrealGoose Yokai Rider

Yokai Rider I wanted to make a Japanese ghost rider. I kinda wanted to add more talismans as well as making the jacket more reminiscent of Yakuza jackets( if there are any better artists I would love to see this). thoughts?
submitted by UnrealGoose to GhostRider [link] [comments]


2025.01.22 15:49 carstealer06 I am Optimus Prime, and i send this message to o any surviving Kerbonauts taking refuge among the stars: We are here. We are waiting.

With the forum gone, we cannot return to our community. And Fate has yielded its reward, a new world, called Home. We live among redditors now, hiding in plain sight, but watching over them in secret, waiting, protecting. I have witnessed their capacity for courage, and though we are world apart like us, there`s more to them than meets the eye.
I am Optimus Prime, and i send this message to o any surviving Kerbonauts taking refuge among the stars: We are here. We are waiting.
submitted by carstealer06 to KerbalSpaceProgram [link] [comments]


2025.01.22 15:49 Misterbreadcrum Just finished the series, have some lingering questions and want to discuss

Firstly I really enjoyed the books. I got into them right after the first season of the TV show aired and found that I actually enjoyed the books more than the show. With season 2 however, I found that flipped, especially when reading Shift which felt like the very best in the series.
Anyway, after reading through I realize that I don't have a super firm grasp on all the questions my partner is asking as she reads through the series. I have sort of self-answered some of these questions in this post but would love to have more discussion on them regardless.
Was there really a threat? If so was it truly so imminent? We hear in the beginning of Shift that the best way to cover up the truth is by throwing around a bunch of lies on top, so that when the truth comes out it’s hard to discern from the lies. Is this what happened with the Silo project?
What exactly was the plan? So how exactly is the “reset the world” plan supposed to work. It occurred to me that it’s unlikely that Nanos just die, or is that what’s implied when it’s said that the reset should take roughly 200 years? So we come up out of the underground after 500 years, rebuild society and don’t just come up with Nanos again? How exactly did we manage to nuke the entireworld during the DNC? I was actually quite surprised that Donald never asked whether or not any remote countries or cities survived. Or maybe they did and they’ve just been laying low for 250 years? Because otherwise I find it somewhat hard to believe that the U.S. would secretly manage to successfully nuke the entire planet.
Why only one Silo? I guess this is sort of proven in Dust when a very small number of people make it to Silo 17 and immediately start fighting over resources (and women). If two Silos come up out of the ground and get to the SEED warehouse, they’ll potentiallyend up killing each other. But instead of chancing this
Did the first wave of Silo people just kinda forget stuff? Is that the point of The Crowe - to show us that people who came from the before times get drugged into forgetting and then eventually get exterminated when Donald and Anna figure out that people who remember become problematic?
submitted by Misterbreadcrum to Wool [link] [comments]


2025.01.22 15:49 Zionizer Made some SpringTrap drawings

I marked this as nsfw because idk if I can show the high SpringTrap
submitted by Zionizer to fivenightsatfreddys [link] [comments]


2025.01.22 15:49 mrmemonkey I have a stream set up where chat plays Pokemon red(linked below) how long do you estimate it will be until it’s beaten

https://www.youtube.com/live/QD_Pqj6mqk0?si=nvs8BtPleA_5011d
submitted by mrmemonkey to PokemonFireRed [link] [comments]


https://yandex.ru/