DieselJC Posted August 15 Share Posted August 15 I am working with an 8K texture and need to move sections of it VERY small amount and it seems like I can't get it to move in smaller incrementys. Is there a setting for this somewhere? What I am doing is a paint for a video game on a truck I attached 2 phoytos one is of the template and the other is a picture of it in game. You can see the right rear corner stripes are off so I go back in and move that stripe but it always seems to move too far so I need to move it VERY small amount and can't. Quote Link to comment Share on other sites More sharing options...
Rick Brewster Posted August 15 Share Posted August 15 Use the arrow keys? Quote The Paint.NET Blog: https://blog.getpaint.net/ Donations are always appreciated! https://www.getpaint.net/donate.html Link to comment Share on other sites More sharing options...
DieselJC Posted August 15 Author Share Posted August 15 25 minutes ago, Rick Brewster said: Use the arrow keys? Even the arrow keys move it too far it seems. I usually have to load into the game numerous times to get stripes to line up in corners like that just looking for a smaller movement option. Thanks for the reply! Quote Link to comment Share on other sites More sharing options...
_koh_ Posted August 16 Share Posted August 16 Maybe this gonna work. 1. duplicate the layer. 2. move foreground layer by 1 pixel. 3. set foreground layer opacity = 128 (or 64, 192 etc. ) 4. merge the layers. Quote Link to comment Share on other sites More sharing options...
Solution _koh_ Posted August 16 Solution Share Posted August 16 Yeah, this method is gamma incorrect and single pixel patterns gonna look pretty bad. Please use this CodeLab script instead. #region UICode DoubleSliderControl x = 0.0; // [-1,1] X DoubleSliderControl y = 0.0; // [-1,1] Y #endregion protected override IDeviceImage OnCreateOutput(IDeviceContext DC) { return new AffineTransform2DEffect(DC, Environment.SourceImage, new(1,0, 0,1, (float)x,(float)y)); } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.