fix issues with mpspawn and waypoint sprites
This commit is contained in:
@@ -339,8 +339,9 @@ namespace OpenRA.Editor
|
|||||||
Map.Bounds.Height * TileSet.TileSize * Zoom);
|
Map.Bounds.Height * TileSet.TileSize * Zoom);
|
||||||
|
|
||||||
foreach (var ar in Map.Actors.Value)
|
foreach (var ar in Map.Actors.Value)
|
||||||
DrawActor(e.Graphics, ar.Value.Location(), ActorTemplates[ar.Value.Type],
|
if (ActorTemplates.ContainsKey(ar.Value.Type))
|
||||||
GetPaletteForActor(ar.Value));
|
DrawActor(e.Graphics, ar.Value.Location(), ActorTemplates[ar.Value.Type],
|
||||||
|
GetPaletteForActor(ar.Value));
|
||||||
|
|
||||||
if (Tool != null)
|
if (Tool != null)
|
||||||
Tool.Preview(this, e.Graphics);
|
Tool.Preview(this, e.Graphics);
|
||||||
|
|||||||
@@ -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">
|
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
@@ -60,6 +60,7 @@
|
|||||||
<Compile Include="Activities\Demolish.cs" />
|
<Compile Include="Activities\Demolish.cs" />
|
||||||
<Compile Include="Activities\Enter.cs" />
|
<Compile Include="Activities\Enter.cs" />
|
||||||
<Compile Include="Activities\EnterTransport.cs" />
|
<Compile Include="Activities\EnterTransport.cs" />
|
||||||
|
<Compile Include="Render\RenderEditorOnly.cs" />
|
||||||
<Compile Include="SmokeTrailWhenDamaged.cs" />
|
<Compile Include="SmokeTrailWhenDamaged.cs" />
|
||||||
<Compile Include="Strategic\StrategicVictoryConditions.cs" />
|
<Compile Include="Strategic\StrategicVictoryConditions.cs" />
|
||||||
<Compile Include="Strategic\StrategicPoint.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:
|
mpspawn:
|
||||||
Waypoint:
|
Waypoint:
|
||||||
|
RenderEditorOnly:
|
||||||
|
|
||||||
waypoint:
|
waypoint:
|
||||||
Waypoint:
|
Waypoint:
|
||||||
|
RenderEditorOnly:
|
||||||
@@ -207,3 +207,12 @@ bomblet:
|
|||||||
Start: 0
|
Start: 0
|
||||||
Length: *
|
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:
|
mpspawn:
|
||||||
Waypoint:
|
Waypoint:
|
||||||
|
RenderEditorOnly:
|
||||||
|
|
||||||
waypoint:
|
waypoint:
|
||||||
Waypoint:
|
Waypoint:
|
||||||
|
RenderEditorOnly:
|
||||||
@@ -1822,4 +1822,14 @@ bubbles:
|
|||||||
idle:
|
idle:
|
||||||
Start: 0
|
Start: 0
|
||||||
Length: *
|
Length: *
|
||||||
Tick: 220
|
Tick: 220
|
||||||
|
|
||||||
|
mpspawn:
|
||||||
|
idle:
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
|
|
||||||
|
waypoint:
|
||||||
|
idle:
|
||||||
|
Start: 0
|
||||||
|
Length: *
|
||||||
Reference in New Issue
Block a user