-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
224 changed files
with
2,554 additions
and
592 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/gui/GuiPlayerButton.java
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/ModelCaladBolg.java
100644 → 100755
Empty file.
914 changes: 914 additions & 0 deletions
914
src/main/java/com/flemmli97/fatemod/client/model/ModelGordiusWheel.java
Large diffs are not rendered by default.
Oops, something went wrong.
695 changes: 695 additions & 0 deletions
695
src/main/java/com/flemmli97/fatemod/client/model/ModelWheel.java
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelArthur.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelCuchulainn.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelDiarmuid.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelEmiya.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelGilgamesh.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelGilles.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelHassan.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelIskander.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelLancelot.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelMedusa.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/model/servant/ModelSasaki.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/MultiItemColor.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/RenderArcherArrow.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/RenderBabylon.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/RenderCaladBolg.java
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/RenderGaeBolg.java
100644 → 100755
Empty file.
24 changes: 24 additions & 0 deletions
24
src/main/java/com/flemmli97/fatemod/client/render/RenderGordiusWheel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.flemmli97.fatemod.client.render; | ||
|
||
import com.flemmli97.fatemod.Fate; | ||
import com.flemmli97.fatemod.client.model.ModelGordiusWheel; | ||
import com.flemmli97.fatemod.common.entity.EntityGordiusWheel; | ||
|
||
import net.minecraft.client.renderer.entity.RenderLiving; | ||
import net.minecraft.client.renderer.entity.RenderManager; | ||
import net.minecraft.util.ResourceLocation; | ||
|
||
public class RenderGordiusWheel extends RenderLiving<EntityGordiusWheel>{ | ||
|
||
public static ResourceLocation tex = new ResourceLocation(Fate.MODID+":textures/entity/gordiusWheel.png"); | ||
|
||
public RenderGordiusWheel(RenderManager rendermanagerIn) { | ||
super(rendermanagerIn, new ModelGordiusWheel(), 1); | ||
} | ||
|
||
@Override | ||
protected ResourceLocation getEntityTexture(EntityGordiusWheel entity) { | ||
return tex; | ||
} | ||
|
||
} |
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/RenderMagicBeam.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/RenderPegasus.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/RenderProjectileBase.java
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
src/main/java/com/flemmli97/fatemod/client/render/particles/ParticleFade.java
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/main/java/com/flemmli97/fatemod/client/render/servant/RenderHassanCopy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.flemmli97.fatemod.client.render.servant; | ||
|
||
import com.flemmli97.fatemod.Fate; | ||
import com.flemmli97.fatemod.client.model.servant.ModelHassan; | ||
import com.flemmli97.fatemod.common.entity.servant.EntityHassanCopy; | ||
|
||
import net.minecraft.client.renderer.entity.RenderManager; | ||
import net.minecraft.util.ResourceLocation; | ||
|
||
public class RenderHassanCopy extends RenderServant<EntityHassanCopy> | ||
{ | ||
private static final ResourceLocation textures = new ResourceLocation(Fate.MODID + ":textures/entity/servant/hassan.png"); | ||
public RenderHassanCopy(RenderManager renderManager) | ||
{ | ||
super(renderManager, new ModelHassan(), 0.5F); | ||
} | ||
|
||
/** | ||
* Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture. | ||
*/ | ||
@Override | ||
protected ResourceLocation servantTexture(EntityHassanCopy entity) | ||
{ | ||
return textures; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
src/main/java/com/flemmli97/fatemod/common/blocks/BlockChalkLine.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/common/blocks/EnumPositionChalk.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/common/blocks/tile/TileChalkLine.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/common/entity/EntityArcherArrow.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/common/entity/EntityBabylonWeapon.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/common/entity/EntityCaladBolg.java
100644 → 100755
Empty file.
Empty file modified
0
src/main/java/com/flemmli97/fatemod/common/entity/EntityEnumaElish.java
100644 → 100755
Empty file.
5 changes: 0 additions & 5 deletions
5
src/main/java/com/flemmli97/fatemod/common/entity/EntityGordiusBull.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.