NScumm.Scumm.Graphics.PixelNavigator.OffsetX C# (CSharp) Method

OffsetX() public method

public OffsetX ( int x ) : void
x int
return void
        public void OffsetX(int x)
        {
            _offset += x * BytesByPixel;
        }

Usage Example

Ejemplo n.º 1
0
 bool MASK_AT(int xoff, PixelNavigator mask, int destX)
 {
     mask.OffsetX((destX + xoff) / 8);
     return((mask.Read() & ScummHelper.RevBitMask((destX + xoff) & 7)) != 0);
 }
All Usage Examples Of NScumm.Scumm.Graphics.PixelNavigator::OffsetX