Иконка ресурса

LUA [nixware] ImGui 1.90.9 ( shadows ) 1.6.0

Нет прав для скачивания
  • 387
  • 251
Klient добавил(а) новый ресурс:

[nixware] ImGui 1.90.9 ( shadows ) - ImGui 1.90.9 ( shadows )

Посмотреть вложение 63959
Вечер в хату. Блатняк завозит имгуи в Nixware. Можете тушить фраеров нормальным рендером картинок и теней

Кидать папку с файлами по пути: {csgo path}/lua

Основа:mimgui

VT: imgui_module |...​

Узнать больше об этом ресурсе...
 
  • 387
  • 251
Klient обновил(а) ресурс [nixware] ImGui 1.90.9 ( shadows ) новой записью:

update

DrawCornerFlags replaced by DrawFlags

Added a new U32 method for ImColor and ImVec4

Lua:
local ImGui = require( 'cimgui' )

ImGui.OnFrame( function( ) return true end, function( )
    local draw_list = ImGui.GetBackgroundDrawList( )

    local pos = ImGui.ImVec2( 200, 200 )
    local size = ImGui.ImVec2( 100, 100 )

    draw_list:AddRectFilled( pos, pos + size, ImGui.ImColor( 255, 255, 255, 255 ):U32( ) ) --does not crash
    draw_list:AddRectFilled( pos, pos + size, ImGui.ImVec4( 1...

Узнать больше об этом обновлении...
 
  • 387
  • 251
Klient обновил(а) ресурс [nixware] ImGui 1.90.9 ( shadows ) новой записью:

update

Fixed glitch with textures
All TextInputs are temporarily inactive

imgui.OnInitialize has been removed
imgui.onFrame has been replaced by imgui.Paint
Lua:
local ImGui = require( 'cimgui' )

ImGui.Paint( function( )
    ImGui.Begin( 'Test' )
    ImGui.End( )
end )

DrawBlurRect has been replaced by DrawBlur
Lua:
local ImGui = require( 'cimgui' )

ImGui.Paint( function( )
    ImGui.Begin( 'Test' )
    local draw_list = ImGui.GetWindowDrawList( )
    local pos, size =...

Узнать больше об этом обновлении...
 
  • 387
  • 251
Klient обновил(а) ресурс [nixware] ImGui 1.90.9 ( shadows ) новой записью:

update

Fixed TextInputs

Added TextLink
Посмотреть вложение 64028
Код:
local ImGui = require( 'cimgui' )

ImGui.Paint( function( )
    ImGui.Begin( 'Window' )
    ImGui.TextLink( 'TextLink' )
    if ImGui.TextLink( 'Second TextLink' ) then
        print( '123123' )
    end
    ImGui.End( )
end )

Updated VT

Узнать больше об этом обновлении...
 
  • 387
  • 251
Klient обновил(а) ресурс [nixware] ImGui 1.90.9 ( shadows ) новой записью:

update

Added svg support to CreateTextureFromFile
Added optional agrument 'size' to CreateTextureFromFile
Lua:
local texture = ImGui.CreateTextureFromFile( 'path' )
local second_texture = ImGui.CreateTextureFromFile( 'path', ImGui.ImVec2( 100, 100 ) )

Added GetTextureInfo
Lua:
local texture = ImGui.CreateTextureFromFile( 'path' )
local texture_info = ImGui.GetTextureInfo( texture )

print( tostring( texture_info.Width ) )
print( tostring( texture_info.Height ) )
...

Узнать больше об этом обновлении...
 
  • 387
  • 251
Klient обновил(а) ресурс [nixware] ImGui 1.90.9 ( shadows ) новой записью:

update

Fixed Combo/ListBox

Посмотреть вложение 64095

Lua:
local ImGui = require( 'cimgui' )

local item = ImGui.new.int( 0 )
local item_list = {'Item 1', 'Item 2', 'Item 3', 'Item 4', 'Item 5'}
local items = ImGui.new['const char*'][#item_list]( item_list )

ImGui.Paint( function( )
    ImGui.Begin( 'Window' )
    ImGui.Combo( 'Combo', item, items, #item_list )
    ImGui.ListBox( 'ListBox', item, items, #item_list )
    ImGui.End( )
end )

Узнать больше об этом обновлении...
 
  • 387
  • 251
Klient обновил(а) ресурс [nixware] ImGui 1.90.9 ( shadows ) новой записью:

update

Added FreeType
Added imgui.GetBuilderForFreeType( )
Added imgui.FreeTypeBuilderFlags

Посмотреть вложение 64090

Lua:
local ImGui = require( 'cimgui' )

local font_config = ImGui.ImFontConfig( )
font_config.OversampleH = 3
font_config.OversampleV = 3
font_config.PixelSnapH = false
font_config.FontBuilderFlags = bit.bor( ImGui.FreeTypeBuilderFlags.Monochrome, ImGui.FreeTypeBuilderFlags.MonoHinting )
local font = ImGui.GetIO( ).Fonts:AddFontFromFileTTF(...

Узнать больше об этом обновлении...
 
Активность
Пока что здесь никого нет
Сверху Снизу