Fixed cable connections rendering, other fixes
- Fixed cable connections rendering to parts and other tiles. - Fixed facade & anchors rendering. - Many other parts related bug fixes.
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2013 AlgorithmX2
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
package appeng.api.parts;
|
||||
|
||||
|
||||
import appeng.api.util.AECableType;
|
||||
|
||||
|
||||
public interface ICustomCableConnection
|
||||
{
|
||||
|
||||
/**
|
||||
* @return This controls the cable connection to the node. -1 to render connection yourself.
|
||||
*/
|
||||
public float getCableConnectionLength( AECableType cable );
|
||||
|
||||
}
|
||||
@@ -48,10 +48,11 @@ import net.minecraftforge.fml.relauncher.SideOnly;
|
||||
|
||||
import appeng.api.client.BakingPipeline;
|
||||
import appeng.api.networking.IGridNode;
|
||||
import appeng.api.util.AECableType;
|
||||
import appeng.api.util.AEPartLocation;
|
||||
|
||||
|
||||
public interface IPart extends IBoxProvider
|
||||
public interface IPart extends IBoxProvider, ICustomCableConnection
|
||||
{
|
||||
|
||||
/**
|
||||
@@ -225,7 +226,7 @@ public interface IPart extends IBoxProvider
|
||||
* @return 0 - 8, reasonable default 3-4, this controls the cable connection to the node. -1 to render connection
|
||||
* yourself.
|
||||
*/
|
||||
int getCableConnectionLength();
|
||||
public float getCableConnectionLength( AECableType cable );
|
||||
|
||||
/**
|
||||
* same as Block.randomDisplayTick, for but parts.
|
||||
|
||||
@@ -39,11 +39,11 @@ import appeng.api.util.DimensionalCoord;
|
||||
|
||||
|
||||
/**
|
||||
* Implemented on AE's TileEntity or AE's FMP Part.
|
||||
* Implemented on AE's TileEntity.
|
||||
*
|
||||
* Do Not Implement
|
||||
*/
|
||||
public interface IPartHost
|
||||
public interface IPartHost extends ICustomCableConnection
|
||||
{
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user