Jump to content

مساعده في الرزيليوشن


Recommended Posts

اذا كنت تستخدم guieditor

في تصميم اللوحة

كلك يمين على الشي الي تبيه

راح تلقى كلمة Output type :

تلقى خيارين

اختار الثاني اللي هو relative

لا ما استخدمه

Link to comment
ذا مثال ضابط على كل الشاشات
local x, y = guiGetScreenSize() 
local rx, ry = (x/1440), (y/900) 
  
addEventHandler("onClientRender", root, 
function() 
    dxDrawText("TEST", rx*300, ry*300) 
end) 

و طبعاً لا تنسى تغير الرقم 1440 و 900 إلى مقاسات شاشتك

Link to comment
ذا مثال ضابط على كل الشاشات
local x, y = guiGetScreenSize() 
local rx, ry = (x/1440), (y/900) 
  
addEventHandler("onClientRender", root, 
function() 
    dxDrawText("TEST", rx*300, ry*300) 
end) 

و طبعاً لا تنسى تغير الرقم 1440 و 900 إلى مقاسات شاشتك

لما حطيته في الملينت ما زبط وما اشتغل القي ممود

Link to comment

اذا هو دي اكس استخدم الكود الي طرحه تنطيل فوق

مثلاً عندك لوحة دي اكس كيف تخليها تضبط لجميع الشاشات ؟

كذا

هذي الاصلية قبل التعديل

addEventHandler("onClientRender", root, 
function() 
    dxDrawRectangle (8,2,10,5 ) 
end) 

عشان تخليها على مقاس جميع الشاشات

local x, y = guiGetScreenSize() 
local rx, ry = (x/1440), (y/900) 
  
addEventHandler("onClientRender", root, 
function() 
    dxDrawRectangle (rx*8,ry*2,rx*10,rx*5) 
end) 

وتسوي كذا لباقي الدي اكس

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...