Jump to content

TreyM

Premium Member
  • Posts

    18
  • Joined

  • Last visited

Nexus Mods Profile

1 Follower

About TreyM

Profile Fields

  • Website URL
    https://TreyM.dev
  • Discord ID
    TreyM#4077
  • Country
    United States
  • Currently Playing
    Nothing
  • Favourite Game
    Super Mario World (SNES)

Recent Profile Visitors

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

TreyM's Achievements

Apprentice

Apprentice (3/14)

  • First Post
  • Collaborator Rare
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. This game needs me to color grade it. I feel a complicated shader writing session coming on.
  2. I've been banging my head against the wall for days over this. I have created a simple LUT texture replacement modified all the vanilla imagespaces to point to the new LUT. This allows me to essentially color grade the game. If Pilgrim for consoles is ever to work, this is an essential part of that. Here is the script I used to modify the imagespaces: unit UserScript; function Process(e: IInterface): integer; begin if Signature(e) <> 'IMGS' then Exit; AddMessage('Processing: ' + FullPath(e)); SetElementEditValues(e, 'TX00 - LUT', 'Effects\LUTs\pilgrim.dds'); end; end.The dds was saved using the NVidia DDS plugin for photoshop in this format: The insanely frustrating issue is that the esp and the LUT works on PC, but is essentially ignored on XBONE (it actually removes the vanilla LUT texture as well, but does not apply my LUT texture) I've tried many different things, including trying to use Elric to convert the dds in multiple different dds formats, to no avail. Can anyone help me see what I'm doing wrong here? Does the game on console just not allow replacement of the LUTs in "Textures/Effects/LUTs" ?
×
×
  • Create New...