Skip to content

Instantly share code, notes, and snippets.

View hYdos's full-sized avatar
🥔
:tiny_potato:

hydos hYdos

🥔
:tiny_potato:
  • Upside Down
  • 04:40 (UTC +10:00)
View GitHub Profile
@hYdos
hYdos / im done with your shit 2
Created November 29, 2022 01:11
A long long history of harassment. How QuiltMC's Community and friends harbor hate.
Note: Unlike what i have recieved and the blind trust people in quilt believe, I will be posting any evidence i can find for the information i provide here to allow for people to actually see the events.
Here is a history of every major event which has happened to me
1. Legacy Fabric was gonna move to Legacy Quilt. This ended up failing due to the fact we waited a year and at the time all we had were rebranded fabric tools which any sensible person would be a bit dissapointed in.
2. We made an announcement stating FACTS THAT WERE ACCURATE AT THE TIME. this part is very important as people manipulate the shit out of it. (Source: Legacy Fabric Discord https://discord.com/channels/679635419045822474/692978559731630101/834694070311714837)
3. Based Loader is started between Me and another person who aimed to improve on all mod loaders. The channel where this was discussed previously has been posted by me countless times but this is important as Based Loader or at the time Mald Loader will get used as a reason f
@hYdos
hYdos / im done with your shit
Created November 28, 2022 23:41
A long long history of harassment. How QuiltMC's Community and friends harbor hate.
Note: Unlike what i have recieved and the blind trust people in quilt believe, I will be posting any evidence i can find for the information i provide here to allow for people to actually see the events.
Here is a history of every major event which has happened to me
1. Legacy Fabric was gonna move to Legacy Quilt. This ended up failing due to the fact we waited a year and at the time all we had were rebranded fabric tools which any sensible person would be a bit dissapointed in.
2. We made an announcement stating FACTS THAT WERE ACCURATE AT THE TIME. this part is very important as people manipulate the shit out of it. (Source: Legacy Fabric Discord https://discord.com/channels/679635419045822474/692978559731630101/834694070311714837)
3. Based Loader is started between Me and another person who aimed to improve on all mod loaders. The channel where this was discussed previously has been posted by me countless times but this is important as Based Loader or at the time Mald Loader will get used as a reason for
@Dylancyclone
Dylancyclone / clearCustomSplitNormalsData.py
Last active March 12, 2023 21:46
Blender script to clear all Custom Split Normal Data from selected objects. Simply select all the objects and run the script. This is useful when importing a bunch of objects used in game development, such as the output generated from https://github.com/Dylancyclone/VMF2OBJ/
import bpy
selection = bpy.context.selected_objects
for o in selection:
try:
bpy.context.view_layer.objects.active = o
bpy.ops.mesh.customdata_custom_splitnormals_clear()
except:
print("Object has no custom split normals: " + o.name + ", skipping")