Plot.IsRiver (Civ5 API)
This page is a part of the Lua and UI Reference (Civ5).
This function is a member of Plot. This is an instance method, invoke it with a colon. |
Usage
int Plot:IsRiver()
Returned Value
- No description available.
Source code samples
Redundant occurences have been removed.
Amazon_XP.lua (G&K)
DLC/Expansion/Maps/Amazon_XP.lua
0422
|
if plot:IsRiver() then |
AssignStartingPlots.lua
Gameplay/Lua/AssignStartingPlots.lua
4931
|
if plot:IsRiver() or plot:IsLake() then |
AssignStartingPlots.lua (G&K)
DLC/Expansion/Gameplay/Lua/AssignStartingPlots.lua
3908
|
if searchPlot:IsRiver() then |
5241
|
if plot:IsRiver() or plot:IsLake() or plot:IsFreshWater() then |
FeatureGenerator.lua (G&K)
DLC/Expansion/Gameplay/Lua/FeatureGenerator.lua
0296
|
elseif (plot:IsRiver()) then |
MapGenerator.lua (G&K)
DLC/Expansion/Gameplay/Lua/MapGenerator.lua
0563
|
if not plot:IsRiver() then |
PlotMouseoverInclude.lua
UI/InGame/PlotMouseoverInclude.lua
0127
|
if (plot:IsRiver()) then |
TutorialChecks.lua
Tutorial/TutorialChecks.lua
2055
|
if (pPlot:IsRiver()) then |
The initial version of this page was created by the Civ5 API Bot, see the Civ5 API Reference FAQ. Some of the texts come from the 2kgames' wiki and most of code samples are copyrighted to Firaxis.
Functions' signatures were either copied from the 2kgames' wiki, or infered from the Lua source files and the binaries. Errors are possible.
Contributors may find help in the Contributors guide to the Civ5 API.