
This Triangle I beveled (It took me an hour to retopologize)
I'm experimenting with making a 3D model that doesn't have the arms or head connected and when making the body, made THIS abomination! However, it is fixed now :D

I'm experimenting with making a 3D model that doesn't have the arms or head connected and when making the body, made THIS abomination! However, it is fixed now :D
This post contains content not supported on old Reddit. Click here to view the full post
This post contains content not supported on old Reddit. Click here to view the full post
So I've decided to make yet another website (I already have 2), and this one is one I am trying to implement a light/dark mode on. I had spent some time looking, found an explanation that provided code and was able to get a button that works (on only one page). I'm still in the process of making the pages, but I have the index and one page that is in a folder (I'm using codehs btw).
I was able to have the button work on the menu (it changed the background color, meaning it worked), but when copying the button code to the other page (adding a ../ before the name of the Javascript file [script.js]), it doesn't work! Or, well, it does, but instead of switching over to using the dark-style.css, it just gets rid of my CSS entirely! I have spent hours tweaking small things, trying to get it to work, and all that time just made the button activate, but get rid of all my CSS.
My button's code is this on the page it removes the CSS on:
<button class="btn-toggle">Mode Switch!</button>
<script src="../script.js"></script>
And they are right beside each other cause like, uhhh I don't exactly know where else the script thing should go.
And this is the code I had copied from the explanation page:
// Select the button
const btn = document.querySelector(".btn-toggle");
// Select the stylesheet <link>
const theme = document.querySelector("#theme-link");
// Listen for a click on the button
btn.addEventListener("click", function() {
// If the current URL contains "ligh-theme.css"
if (theme.getAttribute("href") == "light-style.css") {
// ... then switch it to "dark-theme.css"
theme.href = "dark-style.css";
// Otherwise...
} else {
// ... switch it to "light-theme.css"
theme.href = "light-style.css";
}
});
What could I possibly be doing wrong :( I have a funny feeling that the first explanation on this post is going to be so glaringly obvious I'll wonder why I hadn't thought of it before
So until this point, I hadn't done any work towards getting a vehicle, I was getting around with my seaglide, and thought I could go the whole game with it. Well I get down to where the cotton anenome is and whaddya know, there's not oxygen plants </3
And I drove myself half crazy spending a literal hour last night looking around the area of Marguerit's base because I searched it up (mostly playing blind since first time) and couldn't find where those goddamn spiral plants are so that I can go deeper with my seatruck </3 I'll figure it out eventually!
I had to draw the words myself with laptop trackpad because my phone was taken so I can't just use IbisPaint
This is from maybe last year, I decided to test myself by drawing a horse in 10 minutes (did a timer) and I did it... By memory... Without sketching... I specifically drew it in my 'old way of drawing, which is drawing the outline without doing any sort of sketching to get a body down. That line on the horse's face was me starting to do shadows but my timer went off so it's just a line 😔
I should absolutely try this challenge again soon
I CAN DRAW BETTER THAN THIS, I SWEAR