Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • gcewing

gcewing

Forge Modder
 View Profile  See their activity
  • Content Count

    145
  • Joined

    April 27, 2012
  • Last visited

    December 1, 2016

Community Reputation

40 Excellent

1 Follower

  • killingtroll

About gcewing

  • Rank
    Creeper Killer

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am not quite so new!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. killingtroll started following gcewing December 20, 2017
  2. gcewing started following Greg's French Vanilla for Minecraft 1.6.2, [1.10.2] [SOLVED] Registering sounds, Where are .srg files in 1.10.2? and and 6 others February 1, 2017
  3. gcewing

    [1.10.2] [SOLVED] Registering sounds

    gcewing replied to gcewing's topic in Modder Support

    Thanks. I couldn't see how to make sure my sounds got assigned unique ID numbers, but digging deeper I can see that Forge has its own way of allocating them. All is working now.
    • December 1, 2016
    • 2 replies
  4. gcewing

    [1.10.2] [SOLVED] Registering sounds

    gcewing posted a topic in Modder Support

    Is there a way for a mod to register its own sounds in 1.10.2? The only machinery I can find for doing that is all private.
    • December 1, 2016
    • 2 replies
  5. gcewing

    1.7.10 send tile entity update only?

    gcewing posted a topic in Modder Support

    In MC 1.7.10, is there any easy way to cause a tile entity update packet to be sent to clients without triggering a re-render of the chunk? All I can find is markBlockForUpdate() which does both, and the underlying machinery all seems to be private.
    • November 29, 2016
    • 1 reply
  6. gcewing

    Where are .srg files in 1.10.2?

    gcewing replied to gcewing's topic in Modder Support

    Ah, okay, thanks. Seems I didn't look far enough afield in the cache!
    • November 2, 2016
    • 2 replies
  7. gcewing

    Where are .srg files in 1.10.2?

    gcewing posted a topic in Modder Support

    For a long time I've been using a little script that greps the .srg files to find a mapping for a name. But I've just set up a decomp workspace for 1.10.2, and I can't find the .srg files anywhere, not even in the gradle cache. Does anyone know where they've been hidden? Are .srg files even being used still, or have they been replaced by something else?
    • November 1, 2016
    • 2 replies
  8. gcewing

    Greg's SG Craft for Minecraft 1.7.10 and 1.8.9

    gcewing replied to gcewing's topic in Greg's Mods

    There are no power or computer interfaces in the 1.8 version yet. I'll tackle that when I finish revamping the 1.7 code. The base itself has never acted as a computer peripheral. You need to use an interface block in 1.7, and it will be the same in 1.8.
    • February 19, 2016
    • 12 replies
  9. gcewing

    Greg's SG Craft for Minecraft 1.7.10 and 1.8.9

    gcewing replied to gcewing's topic in Greg's Mods

    Yes, I'm still working on it. Currently working on a 1.8 update. Also hoping to set things up so I can develop 1.7 and 1.8 versions in parallel, although I can't promise anything about that just yet.
    • January 21, 2016
    • 12 replies
  10. gcewing

    Greg's SG Craft for Minecraft 1.7.10 and 1.8.9

    gcewing replied to gcewing's topic in Greg's Mods

    Does this still happen with the latest version (1.9.5)?
    • January 20, 2016
    • 12 replies
  11. gcewing

    Normal layout weirdness in baked model for item

    gcewing posted a topic in Modder Support

    According to DefaultVertexFormats.ITEM, the layout of the bytes in a normal should be x y z pad But I'm finding I need to lay them out this way: pad x y z All the other code I can find in MC and Forge that deals with normals seems to use the ITEM layout, so I'm confused. Anyone know what's going on? I'm using Forge 1.8.9-11.15.0.1691.
    • January 12, 2016
  12. gcewing

    ArchitectureCraft for Minecraft 1.8.0

    gcewing posted a topic in Greg's Mods

    ArchitectureCraft This is a revamped and expanded version of Greg's Blocks for Minecraft 1.8. As well as sloped roofs, you can now have blocks sloping in any direction, create round corners, arches, and other rounded structures, and give your windows nice-looking frames. Home Page http://www.cosc.canterbury.ac.nz/greg.ewing/minecraft/mods/ArchitectureCraft/
    • July 31, 2015
      • 1
      • Like
  13. gcewing

    [1.8] [Solved] Trouble registering a TextureAtlasSprite

    gcewing replied to gcewing's topic in Modder Support

    I found out what was happening. It seems that the textures are loaded twice when Minecraft starts up. Because I'm keeping my own cache of the sprites that I add, they weren't getting added to the atlas the second time around. Clearing my cache on each TextureStitchEvent solved the problem.
    • March 12, 2015
    • 2 replies
  14. gcewing

    [1.8] [Solved] Trouble registering a TextureAtlasSprite

    gcewing replied to gcewing's topic in Modder Support

    It's definitely doubling things up. The two textures I'm adding are being allocated the same slots in the texture atlas as minecraft:blocks/anvil_base and minecraft:blocks/anvil_top_damaged_0.
    • March 12, 2015
    • 2 replies
  15. gcewing

    [1.8] [Solved] Trouble registering a TextureAtlasSprite

    gcewing posted a topic in Modder Support

    I'm trying to add a TextureAtlasSprite by calling event.map.registerSprite() in a TextureStitchEvent.Pre handler. It's not working properly. I get a TextureAtlasSprite with valid-looking texture coords, but the position in the texture that they refer to is occupied by a different sprite. Looking at the dump of the stitched texture map, my texture doesn't seem to appear in it anywhere. Am I going about this the right way? Is TextureStitchEvent.Pre the right time to do this? Am I calling the right method? The equivalent thing used to work in 1.7.
    • March 11, 2015
    • 2 replies
  16. gcewing

    [1.8] Ambient occlusion and sloping faces

    gcewing replied to gcewing's topic in Modder Support

    I thought about that, but the layer is ultimately going to be dictated by the base material, e.g. if the block is made from tinted glass, it's going to have to be rendered in the alpha transparency layer. So I'm not really free to (ab)use the layers that way.
    • March 8, 2015
    • 3 replies
  17. gcewing

    [1.8] Ambient occlusion and sloping faces

    gcewing posted a topic in Modder Support

    I'm porting my roof blocks from Greg's Blocks to 1.8, and I'm having trouble with ambient occlusion. It doesn't seem to be possible to get it to work correctly for faces that are not axis-aligned. In this screenshot, you can see places where the lower edges of roof blocks are incorrectly shaded, because the rendering system thinks that the cobblestone block below the roof block is casting a shadow on it. This happens because the roof block is not opaque, so it includes the block below in AO calculations rather than the block below and in front. The same thing causes the ridge blocks on top to be shaded too darkly, because they have opaque blocks underneath them. In my 1.7 rendering code, I dealt with this by only using AO for the exterior axis-aligned faces and not the sloping ones. But the 1.8 rendering system only allows AO to be turned on or off for the whole model, not individual faces, and unless I'm missing something, only allows one BakedModel to be rendered per block. Anyone have any suggestions?
    • March 7, 2015
    • 3 replies
  • All Activity
  • Home
  • gcewing
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community