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


Java ItemSprite.Glowing方法代碼示例

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


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

示例1: fillFields

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
private void fillFields( int image, ItemSprite.Glowing glowing, int titleColor, String title, String info ) {
	
	IconTitle titlebar = new IconTitle();
	titlebar.icon( new ItemSprite( image, glowing ) );
	titlebar.label( Utils.capitalize( title ), titleColor );
	titlebar.setRect( 0, 0, WIDTH, 0 );
	add( titlebar );
	
	BitmapTextMultiline txtInfo = PixelScene.createMultiline( info, 6 );
	txtInfo.maxWidth = WIDTH;
	txtInfo.measure();
	txtInfo.x = titlebar.left();
	txtInfo.y = titlebar.bottom() + GAP;
	add( txtInfo );
	
	resize( WIDTH, (int)(txtInfo.y + txtInfo.height()) );
}
 
開發者ID:wolispace,項目名稱:soft-pixel-dungeon,代碼行數:18,代碼來源:WndInfoItem.java

示例2: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
public ItemSprite.Glowing glowing() {
	return (type == Type.HEAP || type == Type.FOR_SALE) && items.size() > 0 ? items.peek().glowing() : null;
}
 
開發者ID:wolispace,項目名稱:soft-pixel-dungeon,代碼行數:4,代碼來源:Heap.java

示例3: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return glyph != null ? glyph.glowing() : null;
}
 
開發者ID:wolispace,項目名稱:soft-pixel-dungeon,代碼行數:5,代碼來源:Armor.java

示例4: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
public ItemSprite.Glowing glowing() {
	return null;
}
 
開發者ID:wolispace,項目名稱:soft-pixel-dungeon,代碼行數:4,代碼來源:Item.java

示例5: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
    return potionGlow;
}
 
開發者ID:wolispace,項目名稱:soft-pixel-dungeon,代碼行數:5,代碼來源:Blandfruit.java

示例6: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return enchantment != null ? enchantment.glowing() : null;
}
 
開發者ID:wolispace,項目名稱:soft-pixel-dungeon,代碼行數:5,代碼來源:Weapon.java

示例7: imbuePotion

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
public Item imbuePotion(Potion potion){

		potionAttrib = potion;
		potionAttrib.ownedByFruit = true;

		potionAttrib.image = ItemSpriteSheet.BLANDFRUIT;

		if (potionAttrib instanceof PotionOfHealing){
			name = Messages.get(this, "sunfruit");
			potionGlow = new ItemSprite.Glowing( 0x2EE62E );
		} else if (potionAttrib instanceof PotionOfStrength){
			name = Messages.get(this, "rotfruit");
			potionGlow = new ItemSprite.Glowing( 0xCC0022 );
		} else if (potionAttrib instanceof PotionOfParalyticGas){
			name = Messages.get(this, "earthfruit");
			potionGlow = new ItemSprite.Glowing( 0x67583D );
		} else if (potionAttrib instanceof PotionOfInvisibility){
			name = Messages.get(this, "blindfruit");
			potionGlow = new ItemSprite.Glowing( 0xE5D273 );
		} else if (potionAttrib instanceof PotionOfLiquidFlame){
			name = Messages.get(this, "firefruit");
			potionGlow = new ItemSprite.Glowing( 0xFF7F00 );
		} else if (potionAttrib instanceof PotionOfFrost){
			name = Messages.get(this, "icefruit");
			potionGlow = new ItemSprite.Glowing( 0x66B3FF );
		} else if (potionAttrib instanceof PotionOfMindVision){
			name = Messages.get(this, "fadefruit");
			potionGlow = new ItemSprite.Glowing( 0xB8E6CF );
		} else if (potionAttrib instanceof PotionOfToxicGas){
			name = Messages.get(this, "sorrowfruit");
			potionGlow = new ItemSprite.Glowing( 0xA15CE5 );
		} else if (potionAttrib instanceof PotionOfLevitation) {
			name = Messages.get(this, "stormfruit");
			potionGlow = new ItemSprite.Glowing( 0x1C3A57 );
		} else if (potionAttrib instanceof PotionOfPurity) {
			name = Messages.get(this, "dreamfruit");
			potionGlow = new ItemSprite.Glowing( 0x8E2975 );
		} else if (potionAttrib instanceof PotionOfExperience) {
			name = Messages.get(this, "starfruit");
			potionGlow = new ItemSprite.Glowing( 0xA79400 );
		}

		return this;
	}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon-gdx,代碼行數:45,代碼來源:Blandfruit.java

示例8: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return YELLOW;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon,代碼行數:5,代碼來源:Dazzling.java

示例9: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return BLACK;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon,代碼行數:5,代碼來源:Displacing.java

示例10: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return potionGlow;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon,代碼行數:5,代碼來源:Blandfruit.java

示例11: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return GREEN;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon,代碼行數:5,代碼來源:Camouflage.java

示例12: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return WHITE;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon-gdx,代碼行數:5,代碼來源:Shocking.java

示例13: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return GREY;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon,代碼行數:5,代碼來源:Stone.java

示例14: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return fuse != null ? new ItemSprite.Glowing( 0xFF0000, 0.6f) : null;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon-gdx,代碼行數:5,代碼來源:Bomb.java

示例15: glowing

import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSprite; //導入方法依賴的package包/類
@Override
public ItemSprite.Glowing glowing() {
	return BLUE;
}
 
開發者ID:00-Evan,項目名稱:shattered-pixel-dungeon-gdx,代碼行數:5,代碼來源:Flow.java


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