Mr.Mostafa Posted August 1, 2018 Share Posted August 1, 2018 سلام عليكم محتآج يوزفل فنكشن لو آحد معه آلكود حق آن آلصورة تلف مثل دآيرة آلتحميل مثلا .. لو آحد معه يآريت يعطيني ولو مآفي آحد معه يآريت آحد يقولي آلفنكشنآت آلمستخدمة وآحآول آسويه وشكرآ Link to comment
N3xT Posted August 1, 2018 Share Posted August 1, 2018 ماقد سمعت بيوزفل فنكشن كذا, لكن عالعموم مافيه فنكشن محدد لازم تغير على نفس درجة الدوران الخاصة بالصورة وتحصله من ضمن الأرقمنتات الخاصة بالفنكشن dxDrawImage, rotation وطبعاً تقدر تسويها بالمتغيرات Link to comment
Mr.Mostafa Posted August 1, 2018 Author Share Posted August 1, 2018 1 minute ago, N3xT said: ماقد سمعت بيوزفل فنكشن كذا, لكن عالعموم مافيه فنكشن محدد لازم تغير على نفس درجة الدوران الخاصة بالصورة وتحصله من ضمن الأرقمنتات الخاصة بالفنكشن dxDrawImage, rotation وطبعاً تقدر تسويها بالمتغيرات طيب آبي كل آلفنكشنآت آلي بستخدمهآ عشآن آسويهآ Link to comment
N3xT Posted August 1, 2018 Share Posted August 1, 2018 مافيه فنكشنات, تتحكم بالأرقمنت فقط وبالمتغيرات تزيد الرقم وتنقصه راجع الأرقمنت اللي قلت لك عليه فوق من الويكي Link to comment
Mr.Mostafa Posted August 1, 2018 Author Share Posted August 1, 2018 Just now, N3xT said: مافيه فنكشنات, تتحكم بالأرقمنت فقط وبالمتغيرات تزيد الرقم وتنقصه راجع الأرقمنت اللي قلت لك عليه فوق من الويكي آي آرقمنت ؟ + آلصورة بتكون GUIEDITOR.staticimage Link to comment
#Major . Posted August 1, 2018 Share Posted August 1, 2018 تقدر تستخدم interpolateBetween اذا م خاب ضني Link to comment
Mr.Mostafa Posted August 1, 2018 Author Share Posted August 1, 2018 1 minute ago, N3xT said: setElementRotation طيب وكيف آخليه يلف بآستمرآر ؟ Link to comment
#Major . Posted August 1, 2018 Share Posted August 1, 2018 1 minute ago, *RayaN-Alharbi. said: تقدر تستخدم interpolateBetween اذا م خاب ضني Link to comment
N3xT Posted August 1, 2018 Share Posted August 1, 2018 1 minute ago, Mr.Mostafa said: طيب وكيف آخليه يلف بآستمرآر ؟ تحطه داخل تايمر ولا ريندر كمثال addEventHandler("onClientRender", root, function ( ) setElementRotation ( image, getElementRotation ( image ) + 1 ) end ) Link to comment
#Major . Posted August 1, 2018 Share Posted August 1, 2018 5 minutes ago, N3xT said: تحطه داخل تايمر ولا ريندر كمثال addEventHandler("onClientRender", root, function ( ) setElementRotation ( image, getElementRotation ( image ) + 1 ) end ) ايضًا تنفع الطريقة ذي Link to comment
Mr.Mostafa Posted August 1, 2018 Author Share Posted August 1, 2018 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
N3xT Posted August 1, 2018 Share Posted August 1, 2018 جرب كذا 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
Mr.Mostafa Posted August 1, 2018 Author Share Posted August 1, 2018 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
ميدوح Posted August 1, 2018 Share Posted August 1, 2018 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
Mr.Mostafa Posted August 1, 2018 Author Share Posted August 1, 2018 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
Trefeor Posted August 2, 2018 Share Posted August 2, 2018 ماتقدر تستخدم setElementRotation مع عناصر الـ GUI أتوقع بس تقدر تستخدم مثل م قالك نكست dxDrawImage + مع المتغيرات Link to comment
EH10 Posted August 2, 2018 Share Posted August 2, 2018 addEventHandler("onClientRender", root, function ( ) x, y, z = getElementRotation (GUIEditor.staticimage[1]) setElementRotation(GUIEditor.staticimage[1], x, y, z+10 ) end ) Link to comment
Trefeor Posted August 2, 2018 Share Posted August 2, 2018 ^ قلت سابقاً ماتنفع الوظيفة مع عناصر الـ GUI حسب معرفتني Link to comment
EH10 Posted August 2, 2018 Share Posted August 2, 2018 5 minutes ago, Trefeor said: ^ قلت سابقاً ماتنفع الوظيفة مع عناصر الـ GUI حسب معرفتني حسب معرفتك انها ماتنفع لكن الويكي مو مصرح .انها ماتنفع ، الحياه تجارب ي الحبيب Link to comment
#Major . Posted August 2, 2018 Share Posted August 2, 2018 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
N3xT Posted August 2, 2018 Share Posted August 2, 2018 المعذرة نسيت انه 3 أرقمنتات, وبالنسبة لتريفور الصورة تعتبر اليمنت https://wiki.multitheftauto.com/wiki/Element @Trefeor Link to comment
Mr.Mostafa Posted August 2, 2018 Author Share Posted August 2, 2018 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now