City.GetProductionBuilding (Civ5 API): Difference between revisions

From Civilization Modding Wiki
Jump to navigationJump to search
(Bot update)
 
(No difference)

Latest revision as of 17:48, 19 September 2012

This page is a part of the Lua and UI Reference (Civ5).


Function.png This function is a member of City.

This is an instance method, invoke it with a colon.


Usage

BuildingType City:GetProductionBuilding()


Returned Value

No description available.


Source code samples

Redundant occurences have been removed.

CityView.lua

UI/InGame/CityView/CityView.lua
0848
local buildingProduction = pCity:GetProductionBuilding();
2219
local buildingProduction = city:GetProductionBuilding();


ProductionPopup.lua

UI/InGame/Popups/ProductionPopup.lua
0509
buildingProduction = city:GetProductionBuilding();


TutorialChecks.lua

Tutorial/TutorialChecks.lua
2907
if (building.NoOccupiedUnhappiness and not pCity:IsHasBuilding(buildingID) and pCity:GetProductionBuilding() ~= buildingID) then
2957
if (not pCity:CanConstruct(buildingID) and not pCity:IsHasBuilding(buildingID) and pCity:GetProductionBuilding() ~= buildingID) 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.