Classes

developer »

gameProject »

pedestrianController »

playerPlatform »

punishment »

team »

Concepts

Libraries

Objects

registerConclusion

Description

Registers a conclusion for some kind of aspect of the game. These are used to display info after all the review text. For a conclusion to be displayed, it must be added by calling :addConclusion() on the project review object.

Arguments

1 table data

the data to register.

Example

projectReview:registerConclusion({
	id = "issue_affector_low",
	addToDescbox = function(self, descBox, wrapWidth)
		descBox:addTextLine(wrapWidth, game.UI_COLORS.UI_PENALTY_LINE)
		
		descBox:addText(_T("CONCLUSION_ISSUES_LOW", "Issues are slightly affecting the review score & sales"), "bh20", game.UI_COLORS.RED, 0, wrapWidth, "exclamation_point_red", 24, 24)
	end
})