This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Sửa đổi so với bản gốc, bởi ChatGPT 4o: | |
- Thêm ngày giờ cho mỗi đơn hàng | |
- Nhóm đơn hàng theo năm | |
- Thêm chi tiết thống kê theo năm trong tổng kết và trình bày dễ đọc hơn | |
- Dùng phân cách cột bằng kí tự Tab để paste được thẳng vào Google Sheets | |
*/ | |
/*CÁCH DÙNG: | |
B1: Mở Google Chrome, truy cập và đăng nhập vào Shopee.vn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using UnityEditor; | |
[CustomEditor (typeof(TriggerContainer))] | |
public class TriggerContainerEditor : Editor | |
{ | |
private SerializedObject obj; |