當前位置: 首頁>>代碼示例>>Java>>正文


Java DynamicTexture.func_110565_c方法代碼示例

本文整理匯總了Java中net.minecraft.client.renderer.texture.DynamicTexture.func_110565_c方法的典型用法代碼示例。如果您正苦於以下問題:Java DynamicTexture.func_110565_c方法的具體用法?Java DynamicTexture.func_110565_c怎麽用?Java DynamicTexture.func_110565_c使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.client.renderer.texture.DynamicTexture的用法示例。


在下文中一共展示了DynamicTexture.func_110565_c方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: drawOverlay

import net.minecraft.client.renderer.texture.DynamicTexture; //導入方法依賴的package包/類
@Override
public void drawOverlay(int x, int y, int[] pixelsCurrent, DynamicTexture overlay, int rgb, boolean shift) {
    int[] pixelsOverlay = overlay.func_110565_c();

    for(int i = 0; i < pixelsOverlay.length; i++){
        pixelsOverlay[i] = pixelsCurrent[i];
    }

    if(shift){
        drawLine(x, last_x, y, last_y, pixelsOverlay, rgb);
    }else{
        if (x > -1 &&  x < ImageData.IMAGE_RES && y > -1 && y < ImageData.IMAGE_RES){
            pixelsOverlay[x+ImageData.IMAGE_RES*y] = rgb;
        }
    }

    overlay.func_110564_a();
}
 
開發者ID:aaron-edwards,項目名稱:CustomFlags,代碼行數:19,代碼來源:PenTool.java

示例2: drawOverlay

import net.minecraft.client.renderer.texture.DynamicTexture; //導入方法依賴的package包/類
@Override
public void drawOverlay(int x, int y, int[] pixelsCurrent, DynamicTexture overlay, int rgb, boolean shift) {

    int[] pixelsOverlay = overlay.func_110565_c();
    for(int i = 0; i < pixelsOverlay.length; i++){
        pixelsOverlay[i] = pixelsCurrent[i];
    }

    if(Mouse.isButtonDown(0) && last_x > -1000 && last_y > -1000){
        if(shift){
            if(last_y > y)
                y = last_y - Math.abs(last_x - x);
            else
                y = last_y + Math.abs(last_x - x);
        }

        drawShape(Math.min(last_x, x),
                Math.min(last_y, y),
                Math.max(last_x, x),
                Math.max(last_y, y),
                pixelsOverlay,
                rgb);
    }
}
 
開發者ID:aaron-edwards,項目名稱:CustomFlags,代碼行數:25,代碼來源:RectangleTool.java

示例3: drawOverlay

import net.minecraft.client.renderer.texture.DynamicTexture; //導入方法依賴的package包/類
@Override
public void drawOverlay(int x, int y, int[] pixelsCurrent, DynamicTexture overlay, int rgb, boolean shift) {
    int[] pixelsOverlay = overlay.func_110565_c();

    for(int i = 0; i < pixelsOverlay.length; i++){
        pixelsOverlay[i] = pixelsCurrent[i];
    }

    if (x > -1 &&  x < ImageData.IMAGE_RES && y > -1 && y < ImageData.IMAGE_RES){
        pixelsOverlay[x+ImageData.IMAGE_RES*y] = rgb;
    }

    overlay.func_110564_a();
}
 
開發者ID:aaron-edwards,項目名稱:CustomFlags,代碼行數:15,代碼來源:FloodFillTool.java

示例4: drawOverlay

import net.minecraft.client.renderer.texture.DynamicTexture; //導入方法依賴的package包/類
@Override
public void drawOverlay(int x, int y, int[] pixals, DynamicTexture overlay, int rgb, boolean shift) {

    BufferedImage bi = new BufferedImage(ImageData.IMAGE_RES, ImageData.IMAGE_RES, BufferedImage.TYPE_4BYTE_ABGR);
    bi.setRGB(0,0,ImageData.IMAGE_RES, ImageData.IMAGE_RES, pixals, 0, ImageData.IMAGE_RES);


    Graphics2D g = (Graphics2D) bi.getGraphics();
    g.setColor(new Color(rgb));
    Font f = new Font( "Arial", Font.PLAIN, 10);
    g.setFont(f);
    g.drawString(text, click_x, click_y);

    int length = (int) f.getStringBounds(text, 0, text.length(), g.getFontRenderContext()).getMaxX();


    if((System.currentTimeMillis() / 500) % 2 == 0)
        g.drawLine(length+click_x+1, click_y, length+click_x+1, click_y-8);


    int[] pixelsOverlay = overlay.func_110565_c();


    for(int x0 = 0; x0 < ImageData.IMAGE_RES; x0++){
        for(int y0 = 0; y0 < ImageData.IMAGE_RES; y0++){
            pixelsOverlay[x0+ImageData.IMAGE_RES*y0] = bi.getRGB(x0, y0);
        }
    }



    overlay.func_110564_a();

}
 
開發者ID:aaron-edwards,項目名稱:CustomFlags,代碼行數:35,代碼來源:TextTool.java


注:本文中的net.minecraft.client.renderer.texture.DynamicTexture.func_110565_c方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。