move render modifiers to ra
This commit is contained in:
@@ -185,12 +185,10 @@
|
|||||||
<Compile Include="Traits\Activities\Move.cs" />
|
<Compile Include="Traits\Activities\Move.cs" />
|
||||||
<Compile Include="Traits\Activities\Turn.cs" />
|
<Compile Include="Traits\Activities\Turn.cs" />
|
||||||
<Compile Include="Traits\AttackBase.cs" />
|
<Compile Include="Traits\AttackBase.cs" />
|
||||||
<Compile Include="Traits\Modifiers\BelowUnits.cs" />
|
|
||||||
<Compile Include="Traits\Buildable.cs" />
|
<Compile Include="Traits\Buildable.cs" />
|
||||||
<Compile Include="Traits\Building.cs" />
|
<Compile Include="Traits\Building.cs" />
|
||||||
<Compile Include="Traits\World\BuildingInfluence.cs" />
|
<Compile Include="Traits\World\BuildingInfluence.cs" />
|
||||||
<Compile Include="Traits\CanPowerDown.cs" />
|
<Compile Include="Traits\CanPowerDown.cs" />
|
||||||
<Compile Include="Traits\Modifiers\InvisibleToOthers.cs" />
|
|
||||||
<Compile Include="Traits\ConstructionYard.cs" />
|
<Compile Include="Traits\ConstructionYard.cs" />
|
||||||
<Compile Include="Traits\LimitedAmmo.cs" />
|
<Compile Include="Traits\LimitedAmmo.cs" />
|
||||||
<Compile Include="Traits\Player\PlaceBuilding.cs" />
|
<Compile Include="Traits\Player\PlaceBuilding.cs" />
|
||||||
@@ -207,14 +205,12 @@
|
|||||||
<Compile Include="Traits\RallyPoint.cs" />
|
<Compile Include="Traits\RallyPoint.cs" />
|
||||||
<Compile Include="Traits\Render\RenderSimple.cs" />
|
<Compile Include="Traits\Render\RenderSimple.cs" />
|
||||||
<Compile Include="Traits\Render\RenderUnit.cs" />
|
<Compile Include="Traits\Render\RenderUnit.cs" />
|
||||||
<Compile Include="Traits\Modifiers\WithMuzzleFlash.cs" />
|
|
||||||
<Compile Include="Traits\StoresOre.cs" />
|
<Compile Include="Traits\StoresOre.cs" />
|
||||||
<Compile Include="Traits\Cloak.cs" />
|
<Compile Include="Traits\Cloak.cs" />
|
||||||
<Compile Include="Traits\TraitsInterfaces.cs" />
|
<Compile Include="Traits\TraitsInterfaces.cs" />
|
||||||
<Compile Include="Traits\Turreted.cs" />
|
<Compile Include="Traits\Turreted.cs" />
|
||||||
<Compile Include="Traits\Unit.cs" />
|
<Compile Include="Traits\Unit.cs" />
|
||||||
<Compile Include="Traits\World\UnitInfluence.cs" />
|
<Compile Include="Traits\World\UnitInfluence.cs" />
|
||||||
<Compile Include="Traits\Modifiers\WithShadow.cs" />
|
|
||||||
<Compile Include="Network\UnitOrders.cs" />
|
<Compile Include="Network\UnitOrders.cs" />
|
||||||
<Compile Include="Traits\Util.cs" />
|
<Compile Include="Traits\Util.cs" />
|
||||||
<Compile Include="UiOverlay.cs" />
|
<Compile Include="UiOverlay.cs" />
|
||||||
|
|||||||
@@ -20,8 +20,9 @@
|
|||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Traits
|
namespace OpenRA.Mods.RA
|
||||||
{
|
{
|
||||||
class BelowUnitsInfo : TraitInfo<BelowUnits> { }
|
class BelowUnitsInfo : TraitInfo<BelowUnits> { }
|
||||||
|
|
||||||
@@ -19,8 +19,9 @@
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Traits
|
namespace OpenRA.Mods.RA
|
||||||
{
|
{
|
||||||
class InvisibleToOthersInfo : TraitInfo<InvisibleToOthers> { }
|
class InvisibleToOthersInfo : TraitInfo<InvisibleToOthers> { }
|
||||||
|
|
||||||
@@ -80,6 +80,7 @@
|
|||||||
<Compile Include="AttackTurreted.cs" />
|
<Compile Include="AttackTurreted.cs" />
|
||||||
<Compile Include="AutoHeal.cs" />
|
<Compile Include="AutoHeal.cs" />
|
||||||
<Compile Include="AutoTarget.cs" />
|
<Compile Include="AutoTarget.cs" />
|
||||||
|
<Compile Include="BelowUnits.cs" />
|
||||||
<Compile Include="Bridge.cs" />
|
<Compile Include="Bridge.cs" />
|
||||||
<Compile Include="BridgeLayer.cs" />
|
<Compile Include="BridgeLayer.cs" />
|
||||||
<Compile Include="Burns.cs" />
|
<Compile Include="Burns.cs" />
|
||||||
@@ -104,6 +105,7 @@
|
|||||||
<Compile Include="HasUnitOnBuild.cs" />
|
<Compile Include="HasUnitOnBuild.cs" />
|
||||||
<Compile Include="Helicopter.cs" />
|
<Compile Include="Helicopter.cs" />
|
||||||
<Compile Include="Husk.cs" />
|
<Compile Include="Husk.cs" />
|
||||||
|
<Compile Include="InvisibleToOthers.cs" />
|
||||||
<Compile Include="LeavesHusk.cs" />
|
<Compile Include="LeavesHusk.cs" />
|
||||||
<Compile Include="LightPaletteRotator.cs" />
|
<Compile Include="LightPaletteRotator.cs" />
|
||||||
<Compile Include="OreRefinery.cs" />
|
<Compile Include="OreRefinery.cs" />
|
||||||
@@ -167,6 +169,8 @@
|
|||||||
<Compile Include="TraitsInterfaces.cs" />
|
<Compile Include="TraitsInterfaces.cs" />
|
||||||
<Compile Include="DefaultShellmapScript.cs" />
|
<Compile Include="DefaultShellmapScript.cs" />
|
||||||
<Compile Include="WaterPaletteRotation.cs" />
|
<Compile Include="WaterPaletteRotation.cs" />
|
||||||
|
<Compile Include="WithMuzzleFlash.cs" />
|
||||||
|
<Compile Include="WithShadow.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\OpenRA.FileFormats\OpenRA.FileFormats.csproj">
|
<ProjectReference Include="..\OpenRA.FileFormats\OpenRA.FileFormats.csproj">
|
||||||
|
|||||||
@@ -19,8 +19,9 @@
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
using OpenRA.Graphics;
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Traits
|
namespace OpenRA.Mods.RA
|
||||||
{
|
{
|
||||||
class WithMuzzleFlashInfo : ITraitInfo, ITraitPrerequisite<RenderSimpleInfo>
|
class WithMuzzleFlashInfo : ITraitInfo, ITraitPrerequisite<RenderSimpleInfo>
|
||||||
{
|
{
|
||||||
@@ -20,8 +20,9 @@
|
|||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Traits
|
namespace OpenRA.Mods.RA
|
||||||
{
|
{
|
||||||
class WithShadowInfo : TraitInfo<WithShadow> {}
|
class WithShadowInfo : TraitInfo<WithShadow> {}
|
||||||
|
|
||||||
Reference in New Issue
Block a user