Home Entrance Wiki Search Login Register

Welcome, Guest. Please login or register.
March 06, 2023, 05:15:49 am
Forum activity rating: Five Star Posts: 102/24hrs Show Unread Posts | Unread Replies | Own Posts | Recent Posts
News: :4u: ~~~~~~~~~~~  :4u:

Show Posts

* Messages | Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - cinni

Pages: 1 ... 3 4 [5] 6 7 ... 11
61
All caps/all lowercase: Terrible for screen readers, especially the former. I would suggest doing something with the "text-transform" property on your CSS instead of actually typing like that.

oops, i do this. Oops, I do this :eyes: I'm a weirdo who likes the symmetry of lowercase letters, which is probably a Wrong Opinion, and a dumb excuse to break rules. I'm working on sucking it up, and text-transform is a happy medium that somehow never crossed my mind. I hate to admit that I didn't think about screen readers for a long time, since I've never had to experience the web with one. It's something I think about now, but I guess I have a lot to learn.

I don't have too many pet peeves, but some sites do kinda feel more like 1990s roleplay. I'm not very interested in those, but I still support people having fun being webmasters. Whatever gets the kids off TikTok.

oy same!! i never thought of using text-transform for all lower case (i use it for things like titles/headers i want to be in all caps haha). i normally type in all lowercase by default but there are times i would want to Emphasize certain words so i apologize to everyone with screen readers in advance. ;-; i will certainly keep this in mind tho for my more professional/community orientated sites!

62
❤︎ ∙ Greetings and Introductions / Re: It's Me
« on: March 22, 2022, 06:55:43 pm »
welcome to the forum! :chill: love your site!

63
☆ ∙ Showcase & Links / Re: TamagIchi - building tamas together
« on: March 22, 2022, 06:46:43 pm »
oh yeah another m15o project!! i am very excited for this one! haha. would love to try n make a lil pixel guy! :ha:

64
❤︎ ∙ Greetings and Introductions / Re: Greetings!
« on: March 19, 2022, 02:12:22 am »
welcome!! ^.^ nice to have you here!! your site is absolutely lovely, im a big fan of your art!! :ha:

65
love this grafo!! the way he's rendered fits the horror aspect of your game really well haha. great spooky guys

66
♖ ∙ Games Cafe / Re: The Collection Chamber
« on: March 15, 2022, 06:49:08 pm »
woah!! i've never seen that sailor moon game before. such a gem of a website !! :4u:

67
That's... a really good idea actually! I got my pin collection on a lanyard; I could grab another one of those cassettes, glue a jewelry pin onto it and sneak it on there. That'd be a really cool conversation starter, I'll have to think about doing that!

haha glad i could be of inspiration!

i have quite the many smol things, since i like to buy mini sanri:ha:san-x blind boxes whenever im around a certain toy store. i gotta dig up better pictures of them all, but here's one of my teeniest tiny thing, a mini blind-box!! (hand for scale)





68
just a quick update, i made a new building! its a deli/pizzeria from my old neighborhood.






69
Something my partner picked up today. It's an NT cassette!

He got it new in box, the guy selling it didn't really know what it was. It's almost exactly the same size as an SD card; it's (as far as my research tells me) the smallest commercially produced cassette ever made! Too bad the microrecorders for them hover around a thousand dollars... :tongue:

AHH!! so cute!!! i thought this was a pin at first glance LOL. sooo smol!!

70
✎ ∙ Making Games & Art Discussion / Unity Basics!
« on: March 02, 2022, 03:19:24 am »
hey melon citizens, i thought it would be helpful to share some resources if you're a newbie at unity/c# in general (like me, haha). i've tried out various tutorials but always forget about the basics, so i'm going to update this topic as i come across helpful things. :chill: check back later for more links!!!1


Basic Player Controller

i was looking for a simple way to implement 1st/3rd player and thought about disabling the player mesh when switching views - and i should be able to this way. I plan to add on to this script, so i'll update this with any news xP

EDIT: here's how to toggle between 1st+3rd view by disabling the player mesh :-)
add this part at the top with your other variables:

Code
public MeshRenderer playerMesh;

and then in your void Update(), add this to the end:
Code
    if (Input.GetKeyUp(KeyCode.C))
    {
      playerMesh.enabled = !playerMesh.enabled;
    }
huzzah! initally i had "GetKey" but it would toggle WAY too fast between the two, but "GetKeyUp" fixed this issue hehe
 

Other Resources:
My unity tutorial playlist
Random scripts (animating textures, randomized npc walking, etc)
Multiplayer tutorial (i really need to finish this! ack!!!)

71
i honestly don't remember the forums i used to frequent, i remember being a part of a couple of furcadia roleplay forum communities etc, and a couple of warriorcats ones. now, i occasionally frequent an organic gardening forum, and a permaculture forum. (permies!) i think this is the first one i've actually posted on in years though, i mostly just lurk in others and use them to find tips and resources.

i was on a few warrior cats rp forums too! god i long have forgotten what they were though .. xP i was really into warriorcats rp'ing on furc haha. i loved those dreams when you could be a lil feral cat (before there were cat digos o_o)
p.s. your portrait + site are soo cool looking (✧ω✧)

another forum i'm on besides this one is pixelgardenmb!

i also frequented oekaki boards back in the day, when they were more commonplace :-p i don't think i personally drew in loish's board (i just can't remember the ones i DID draw in), but i followed her on deviantart and probably admired it from a distance. (it was normal to see some boards have a separate 'sketch' section and you had to try out to get into the 'regular/advanced' oekaki board.) i *swear* i saw a version of this site with a really elaborate splash page, but i can't find the link now haha. https://web.archive.org/web/20040904130052/http://oekaki.loish.net/



72
☆ ∙ Showcase & Links / Re: 99GIF shop
« on: February 13, 2022, 06:30:53 am »
:ozwomp:

ive been on a kick and making darkmode themes for my sites. 99gifshop is no exception! you can now surf at night 👀 (plus new page of gifs): click here
(i wish the pages wouldnt flicker from white to black when it loads, but idk how to fix that)




73
i am a total coffee fiend, i drink 2-3 cups a day x_x usually with milk if i have it, otherwise i drink it black.

when it's too late for coffee i drink seltzer almost exclusively lol. lately with a splash of lemon juice for extra vitamin c! hehe

74
✎ ∙ Making Games & Art Discussion / Re: psx effects
« on: February 11, 2022, 10:42:00 pm »
i came across this tutorial on ps1-style rendering in blender and it was exactly what i needed (all it really does is pixelate the edges) :-p i usually animate in blender > render in unity, but for this animation i kinda needed to do everything in blender. huzzah!



75
© ∙ Music Room / Re: Freeware music goodies!
« on: February 11, 2022, 07:46:31 pm »
I use reaper! it's free* and i like it, but i can't comment much else on it as a DAW cause i still don't really know how to use DAWs... >_>

* well, they ask you nicely to purchase a one time license after the trial but it never stops you from using the program :-)

Pages: 1 ... 3 4 [5] 6 7 ... 11


Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021, Simple Machines | SMFPacks Super Quote Forum Guide | Rules | RSS | WAP2


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery!