Jump to content

طلب يوزفل فنكشن


Recommended Posts

سلام عليكم

محتآج يوزفل فنكشن لو آحد معه

آلكود حق آن آلصورة تلف مثل دآيرة آلتحميل مثلا ..

لو آحد معه يآريت يعطيني ولو مآفي آحد معه يآريت آحد يقولي آلفنكشنآت آلمستخدمة وآحآول آسويه

وشكرآ

Link to comment

ماقد سمعت بيوزفل فنكشن كذا, لكن عالعموم مافيه فنكشن محدد

لازم تغير على نفس درجة الدوران الخاصة بالصورة وتحصله من ضمن الأرقمنتات الخاصة بالفنكشن

dxDrawImage, rotation

 

وطبعاً تقدر تسويها بالمتغيرات 

Link to comment
1 minute ago, N3xT said:

ماقد سمعت بيوزفل فنكشن كذا, لكن عالعموم مافيه فنكشن محدد

لازم تغير على نفس درجة الدوران الخاصة بالصورة وتحصله من ضمن الأرقمنتات الخاصة بالفنكشن

dxDrawImage, rotation

 

وطبعاً تقدر تسويها بالمتغيرات 

طيب آبي كل آلفنكشنآت آلي بستخدمهآ عشآن آسويهآ

Link to comment
Just now, N3xT said:

مافيه فنكشنات, تتحكم بالأرقمنت فقط وبالمتغيرات تزيد الرقم وتنقصه

راجع الأرقمنت اللي قلت لك عليه فوق من الويكي

آي آرقمنت ؟ + آلصورة بتكون

GUIEDITOR.staticimage

Link to comment
1 minute ago, Mr.Mostafa said:

طيب وكيف آخليه يلف بآستمرآر ؟

تحطه داخل تايمر ولا ريندر

كمثال

addEventHandler("onClientRender", root,
	function ( )
		setElementRotation ( image, getElementRotation ( image ) + 1 )
	end
)

 

Link to comment
GUIEditor = {
    staticimage = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        GUIEditor.staticimage[1] = guiCreateStaticImage((screenW - 188) / 2, (screenH - 138) / 2, 188, 138, ":renderPhoto/tara.png", false)    
    end
)


addEventHandler("onClientRender", root,
	function ( )
		setElementRotation ( GUIEditor.staticimage[1], getElementRotation ( GUIEditor.staticimage[1] ) + 10 )
	end
)

سويت كدآ ومآ ظبط 

Debug : 

ERROR: renderPhoto/client.lua:14:attempt to perform arithmetic on a boolean value

@N3xT

Link to comment

جرب كذا

GUIEditor = {
    staticimage = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        GUIEditor.staticimage[1] = guiCreateStaticImage((screenW - 188) / 2, (screenH - 138) / 2, 188, 138, ":renderPhoto/tara.png", false)    
    end
)


addEventHandler("onClientRender", root,
	function ( )
		setElementRotation ( GUIEditor.staticimage[1], getElementRotation ( GUIEditor.staticimage[1] ) or 0 + 10 )
	end
)

 

Link to comment
2 minutes ago, N3xT said:

جرب كذا


GUIEditor = {
    staticimage = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        GUIEditor.staticimage[1] = guiCreateStaticImage((screenW - 188) / 2, (screenH - 138) / 2, 188, 138, ":renderPhoto/tara.png", false)    
    end
)


addEventHandler("onClientRender", root,
	function ( )
		setElementRotation ( GUIEditor.staticimage[1], getElementRotation ( GUIEditor.staticimage[1] ) or 0 + 10 )
	end
)

 

WATNING : Bad Argument @ ' setElementRotation' [ Expected number at argument 3, got none] 

آب

Link to comment
    GUIEditor = {
        staticimage = {}
    }
    addEventHandler("onClientResourceStart", resourceRoot,
        function()
    local screenW, screenH = guiGetScreenSize()
            GUIEditor.staticimage[1] = guiCreateStaticImage((screenW - 188) / 2, (screenH - 138) / 2, 188, 138, ":renderPhoto/tara.png", false)    
        end
    )


    addEventHandler("onClientRender", root,
    	function ( )
    		setElementRotation ( GUIEditor.staticimage[1], tonumber(getElementRotation ( GUIEditor.staticimage[1] ) or 0 ) + 10 )
    	end
    )

 

Link to comment
51 minutes ago, medo7 said:

    GUIEditor = {
        staticimage = {}
    }
    addEventHandler("onClientResourceStart", resourceRoot,
        function()
    local screenW, screenH = guiGetScreenSize()
            GUIEditor.staticimage[1] = guiCreateStaticImage((screenW - 188) / 2, (screenH - 138) / 2, 188, 138, ":renderPhoto/tara.png", false)    
        end
    )


    addEventHandler("onClientRender", root,
    	function ( )
    		setElementRotation ( GUIEditor.staticimage[1], tonumber(getElementRotation ( GUIEditor.staticimage[1] ) or 0 ) + 10 )
    	end
    )

 

مآ آشتغل

WARNING : Bad argument @ 'setElementRotation' [Expected number at argument 3, got none ]

Link to comment
5 minutes ago, Trefeor said:

^ قلت سابقاً ماتنفع الوظيفة مع عناصر الـ GUI حسب معرفتني

حسب معرفتك انها ماتنفع لكن الويكي مو مصرح .انها ماتنفع ، الحياه تجارب ي الحبيب

Link to comment

        GUIEditor = {
            staticimage = {}
        }
        addEventHandler("onClientResourceStart", resourceRoot,
            function()
        local screenW, screenH = guiGetScreenSize()
                GUIEditor.staticimage[1] = guiCreateStaticImage((screenW - 188) / 2, (screenH - 138) / 2, 188, 138, ":renderPhoto/tara.png", false)    
            end
        )


        addEventHandler("onClientRender", root,
        	function ( )
        		setElementRotation ( GUIEditor.staticimage[1], tonumber(getElementRotation ( GUIEditor.staticimage[1] ) or 0 ) + 10, 0, 0 )
        	end
        )

 

Link to comment
9 hours ago, Trefeor said:

ماتقدر تستخدم 

setElementRotation

مع عناصر الـ GUI أتوقع 

بس تقدر تستخدم مثل م قالك نكست dxDrawImage + مع المتغيرات

آلمشكلة آلصورة GUI

 مب دي آكس

3 hours ago, *RayaN-Alharbi. said:

        GUIEditor = {
            staticimage = {}
        }
        addEventHandler("onClientResourceStart", resourceRoot,
            function()
        local screenW, screenH = guiGetScreenSize()
                GUIEditor.staticimage[1] = guiCreateStaticImage((screenW - 188) / 2, (screenH - 138) / 2, 188, 138, ":renderPhoto/tara.png", false)    
            end
        )


        addEventHandler("onClientRender", root,
        	function ( )
        		setElementRotation ( GUIEditor.staticimage[1], tonumber(getElementRotation ( GUIEditor.staticimage[1] ) or 0 ) + 10, 0, 0 )
        	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...