تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
توضّح هذه المواضيع كيفية استخدام أحداث "خدمات ألعاب Play" في ألعاب Unity.
قبل البدء
إعداد مشروع Unity وإضافة Google Play Games لـ Unity للاطّلاع على
التفاصيل، يُرجى الاطّلاع على دليل البدء.
إنشاء أحداث
يمكنك إنشاء الأحداث في Google Play Console. لمعرفة التفاصيل، يُرجى الاطّلاع على
دليل الأحداث لخدمة "ألعاب Play". بعد
إنشاء أحداثك، أضِف موارد Android إلى المكوّن الإضافي كما هو موضّح
في دليل البدء.
تسجيل الأحداث
لزيادة حدث، يمكنك استدعاء الطريقة التالية:
usingGooglePlayGames;...// Increments the event with Id "YOUR_EVENT_ID" by 1PlayGamesPlatform.Instance.Events.IncrementEvent("YOUR_EVENT_ID",1);
ما عليك سوى إجراء هذه المكالمة مرة واحدة. وتتولى هذه العملية تجميع المهام وتنفيذها في
الخلفية.
يخضع كل من المحتوى وعيّنات التعليمات البرمجية في هذه الصفحة للتراخيص الموضحّة في ترخيص استخدام المحتوى. إنّ Java وOpenJDK هما علامتان تجاريتان مسجَّلتان لشركة Oracle و/أو الشركات التابعة لها.
تاريخ التعديل الأخير: 2025-07-27 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","easyToUnderstand","thumb-up"],["ساعَدني المحتوى في حلّ مشكلتي.","solvedMyProblem","thumb-up"],["غير ذلك","otherUp","thumb-up"]],[["لا يحتوي على المعلومات التي أحتاج إليها.","missingTheInformationINeed","thumb-down"],["الخطوات معقدة للغاية / كثيرة جدًا.","tooComplicatedTooManySteps","thumb-down"],["المحتوى قديم.","outOfDate","thumb-down"],["ثمة مشكلة في الترجمة.","translationIssue","thumb-down"],["مشكلة في العيّنات / التعليمات البرمجية","samplesCodeIssue","thumb-down"],["غير ذلك","otherDown","thumb-down"]],["تاريخ التعديل الأخير: 2025-07-27 (حسب التوقيت العالمي المتفَّق عليه)"],[],[],null,["# Events in Unity games\n\nThis topics describes how to use Play Games Services events in Unity\ngames.\n\nBefore you get started\n----------------------\n\nSet up your Unity project and the Google Play Games plugin for Unity. For\ndetails, see the [Get started guide](/games/pgs/unity/unity-start).\n\nCreate events\n-------------\n\nYou create events in Google Play Console. For details, see the\n[events guide](/games/pgs/events#create-event) for Play Games Services. After\nyou create your events, add their Android resources to the plugin as described\nin the [get started guide](/games/pgs/unity/unity-start).\n\nRecord events\n-------------\n\nTo increment an event, call the following method: \n\n using GooglePlayGames;\n ...\n // Increments the event with Id \"YOUR_EVENT_ID\" by 1\n PlayGamesPlatform.Instance.Events.IncrementEvent(\"YOUR_EVENT_ID\", 1);\n\nYou only need to make this call once. It handles batching and execution in the\nbackground."]]