fix issues with mpspawn and waypoint sprites
This commit is contained in:
@@ -339,6 +339,7 @@ namespace OpenRA.Editor
|
||||
Map.Bounds.Height * TileSet.TileSize * Zoom);
|
||||
|
||||
foreach (var ar in Map.Actors.Value)
|
||||
if (ActorTemplates.ContainsKey(ar.Value.Type))
|
||||
DrawActor(e.Graphics, ar.Value.Location(), ActorTemplates[ar.Value.Type],
|
||||
GetPaletteForActor(ar.Value));
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
@@ -60,6 +60,7 @@
|
||||
<Compile Include="Activities\Demolish.cs" />
|
||||
<Compile Include="Activities\Enter.cs" />
|
||||
<Compile Include="Activities\EnterTransport.cs" />
|
||||
<Compile Include="Render\RenderEditorOnly.cs" />
|
||||
<Compile Include="SmokeTrailWhenDamaged.cs" />
|
||||
<Compile Include="Strategic\StrategicVictoryConditions.cs" />
|
||||
<Compile Include="Strategic\StrategicPoint.cs" />
|
||||
|
||||
28
OpenRA.Mods.RA/Render/RenderEditorOnly.cs
Normal file
28
OpenRA.Mods.RA/Render/RenderEditorOnly.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
#region Copyright & License Information
|
||||
/*
|
||||
* Copyright 2007-2011 The OpenRA Developers (see AUTHORS)
|
||||
* This file is part of OpenRA, which is free software. It is made
|
||||
* available to you under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation. For more information,
|
||||
* see COPYING.
|
||||
*/
|
||||
#endregion
|
||||
|
||||
using System.Collections.Generic;
|
||||
using OpenRA.Traits;
|
||||
|
||||
namespace OpenRA.Mods.RA.Render
|
||||
{
|
||||
class RenderEditorOnlyInfo : RenderSimpleInfo
|
||||
{
|
||||
public override object Create(ActorInitializer init) { return new RenderEditorOnly(init.self); }
|
||||
}
|
||||
|
||||
class RenderEditorOnly : RenderSimple
|
||||
{
|
||||
public RenderEditorOnly(Actor self) : base(self, () => 0) { }
|
||||
|
||||
static readonly Renderable[] Nothing = { };
|
||||
public override IEnumerable<Renderable> Render(Actor self) { return Nothing; }
|
||||
}
|
||||
}
|
||||
BIN
mods/cnc/bits/mpspawn.shp
Normal file
BIN
mods/cnc/bits/mpspawn.shp
Normal file
Binary file not shown.
BIN
mods/cnc/bits/waypoint.shp
Normal file
BIN
mods/cnc/bits/waypoint.shp
Normal file
Binary file not shown.
@@ -196,6 +196,8 @@ CRATE:
|
||||
|
||||
mpspawn:
|
||||
Waypoint:
|
||||
RenderEditorOnly:
|
||||
|
||||
waypoint:
|
||||
Waypoint:
|
||||
RenderEditorOnly:
|
||||
@@ -207,3 +207,12 @@ bomblet:
|
||||
Start: 0
|
||||
Length: *
|
||||
|
||||
mpspawn:
|
||||
idle:
|
||||
Start: 0
|
||||
Length: *
|
||||
|
||||
waypoint:
|
||||
idle:
|
||||
Start: 0
|
||||
Length: *
|
||||
BIN
mods/ra/bits/mpspawn.shp
Normal file
BIN
mods/ra/bits/mpspawn.shp
Normal file
Binary file not shown.
BIN
mods/ra/bits/waypoint.shp
Normal file
BIN
mods/ra/bits/waypoint.shp
Normal file
Binary file not shown.
@@ -332,6 +332,8 @@ powerproxy.sonarpulse:
|
||||
|
||||
mpspawn:
|
||||
Waypoint:
|
||||
RenderEditorOnly:
|
||||
|
||||
waypoint:
|
||||
Waypoint:
|
||||
RenderEditorOnly:
|
||||
@@ -1823,3 +1823,13 @@ bubbles:
|
||||
Start: 0
|
||||
Length: *
|
||||
Tick: 220
|
||||
|
||||
mpspawn:
|
||||
idle:
|
||||
Start: 0
|
||||
Length: *
|
||||
|
||||
waypoint:
|
||||
idle:
|
||||
Start: 0
|
||||
Length: *
|
||||
Reference in New Issue
Block a user