ImGui.Core:imageFilled

From GiderosMobile
Revision as of 04:42, 26 March 2021 by MoKaLux (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Displays an image with a filled background color. <source lang="lua"> ImG...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2020.9
Class: ImGui

Description

Displays an image with a filled background color.

ImGui:imageFilled(texture,w,h,color,alpha,bg_color,bg_alpha,bordercolor,borderalpha)

Parameters

texture: (texture) the image texture
w: (number) the image width
h: (number) the image height
color: (number) the image tint color in hex format optional
alpha: (number) the image alpha optional
bg_color: (number) the image background color in hex format optional
bg_alpha: (number) the image background alpha optional
bordercolor: (number) the image border color in hex format optional
borderalpha: (number) the image border alpha optional

Example

MyClass = Core.class(Sprite)

function MyClass:init()
	self.imgui = ImGui.new()
	-- we create a variable to hold our window status
	self.window01 = true -- window01 exists at start up
	-- order
	self:addChild(self.imgui)
	-- LISTENERS
	self:addEventListener("enterBegin", self.onTransitionInBegin, self)
end

-- LOOP
function MyClass:onEnterFrame(e)
	-- 1 we start ImGui
	self.imgui:newFrame(e)
	-- 2 we build our GUI
	if self.window01 then -- is window01 existant?
		local windowdrawn = false -- is window01 colapsed?
		self.window01, windowdrawn = self.imgui:beginWindow(
			"Hello ImGui", -- window title
			self.window01 -- is window01 existant?
		)
		if windowdrawn then -- the variable is false when window01 is collapsed
			imgui:imageFilled("gfx/image.png", 64, 64, 0xffffff, 1, 0xff0000, 0.5, 0x555555, 1)
		end
		self.imgui:endWindow()
	end
	self.imgui:endFrame()
	self.imgui:render()
end

-- EVENT LISTENERS
function MyClass:onTransitionInBegin()
	self:addEventListener(Event.ENTER_FRAME, self.onEnterFrame, self)
end