• This week, 800 new animation resources have been released, and the Gplayer player function has been launched. Everyone is welcome to refer to them, use them for reference, and download them!
创作惊艳的视觉效果

(转载)使用Visual Effect Graph创作惊艳的视觉效果

转自https://www.magesbox.com/article/detail/id/372.html

在Unite LA 2018期间,我们发布了在Unity中创作实时视觉效果的工具Visual Effect Graph,该工具使用在GPU运行的计算着色器和基于节点的工作流程。本文将比较Visual Effect Graph和现有的粒子系统,并展示如何开始使用这款强大工具。


Visual Effect Graph受到主流电影特效软件的启发,加入了许多相同的强大功能用于创作实时视觉效果,下面视频将对Visual Effect Graph进行简要介绍。



入门

我们可以通过Unity 2018.3或更高版本编辑器中的资源包管理器安装Visual Effect Graph。


请点击Unity编辑器菜单Window > Package Manager,点开Advanced并选中“Show preview packages”,然后找到Visual Effect Graph,单击Install按钮即可。

e34b06ff5306e05dc48604b5c421decf0d24b488120587-VOO64g_fw658.gif


目前,Visual Effect Graph运行于Unity 2018.3的高清晰渲染管线,对轻量级渲染管线的支持预计在之后的版本推出。为了使用Visual Effect Graph,请确保你的Unity项目使用High-Definition RP模板。

image.png

为了创建视觉效果,请在项目窗口点击右键,依次选择Create > Visual Effects > Visual Effects Graph。


创建资源后,将其拖到场景视图或层级窗口。

546654.gif


Visual Effect Graph窗口

Visual Effect Graph适用于VFX新手到资深艺术家和程序员等,Visual Effect Graph通过使用节点和属性模块,来提供一个快速学习,轻松掌握,强大的工作流程。

123.gif


Context包含多个属性模块,用于表示应用于粒子的操作顺序。节点之间互相连接,会执行一系列输入属性模块的计算,从而定义粒子属性。节点系统会让使用Shader Graph着色器视图的用户感到很熟悉,但二个工具并不完全相同。


创建Context或单个节点,可以点击空格键,或单击右键,选择Create Node。创建属性模块,可在节点中点击空格键,或者单击右键,选择Create Block。


1 Context

image.png


System是Initialize、Update和Output的Context组合。它由虚线轮廓表示。多个系统可以存在同一个Visual Effect Graph资源中。


Spawn定义生成粒子的数量和时间,例如Periodic Burst(间歇性喷发)、Constant(持续喷发)和Single Burst(单次喷发)等。


Initialize的前二个属性为Capacity(同时存在粒子数量)和Bounds(区域)。


Capacity确定每次系统中可以存在的粒子数量。


请注意:Capacity属性会根据粒子数量分配合适的内存,所以该数值应该对应可生成的粒子数量进行设置。通常,该值的计算公式为:Rate × Max Lifetime = Capacity


Bounds定义摄像机视图中粒子生成和模拟的区域。


Update会不断改变粒子属性,它是唯一可以使用作用力的部分。


Output会渲染粒子,它决定生成的粒子类型、纹理、颜色和方向。我们可以在此对粒子的大小,位置等属性进行最后调整。每个粒子系统可以有不同的输出结果,每个输出结果可以调整多数粒子属性。


2 Block

Block属性模块定义粒子的属性,这些属性可以由节点重写。Block包含在Context内,但有些属性模块无法在特定Context中使用。例如:Spawn Rate Block只能添加到Spawn Context中。

image.png


我们可以通过取消勾选名称右侧的复选框禁用属性模块。有些输入内容可以通过点击输入名称左侧的小箭头展开,可以访问并修改详细属性,例如:Vector3的X,Y和Z。


在视图中选择Block和Context时,我们可以通过检视窗口修改它们。因此在创作视觉效果时,显示检视窗口可以方便创作过程。

image.png


3 Node

Node节点具有很多功能,包括从输出指定数值和参数数据到执行各种不同的计算。Add,Multiply或Lerp等多数定义数值的节点可以通过修改来输出不同数值类型,例如:Float,Vector3或颜色数值。

image.png


流程工具

1 Auto Compile

默认情况下,每次修改节点或属性模块时,Visual Effect Graph都会重新编译。对于较小的视图,Auto Compile自动编译帮助我们在场景中快速看到改动效果。


但是对于比较复杂的系统,编译时间可能较长。禁用Auto Compile后,视图只会在保存或单击Compile按钮时进行编译,这样在大幅改动视图时,不必在每次调整后等待较长时间。


2 Blackboard

Blackboard面板可以存储视图中的参数,并公开给检视窗口以便进行修改。为了安排不同参数类型,Blackboard面板支持设置Categories类型和Tooltips提示信息。

image.png


创建新参数,请点击Blackboard右上角的+图标。

image.png


3 Target GameObject

Target GameObject面板允许你控制播放过程,或是查看场景中已打开视觉效果特定实例的本地空间辅助图示。


附加游戏对象,请点击场景中已打开的视觉效果实例,然后点击Attach,直接从场景实例打开视觉效果也会自动将该面板附加到游戏对象上。

image.png


4 Parameter Binders

虽然可以通过脚本来设置公开的参数,但Parameter Binders组件会自动配置视觉效果的参数,例如:游戏对象的位置,缩放和旋转。

image.png


添加Parameter Binder组件,请在层级窗口选中视觉效果,单击Add Component,搜索“Binder”并添加。将游戏对象拖到标着“None”的方框,然后点击 ⌄ 图标选择合适的参数。

image.png



与现有粒子系统比较

Visual Effect Graph和粒子系统的主要区别在于它们运行的硬件。粒子系统在CPU模拟生成,而Visual Effect Graph将大量计算移动到运行在GPU的计算着色器。

image.png


从上面的对比图中,我们可以看出Visual Effect Graph的优点是能够模拟数百万个粒子,计算复杂的模拟过程,以及读取帧缓冲区。而粒子系统可以使用基础物理系统,并通过回读来与游戏交互。


特别需要注意的是设备兼容性,部分设备不支持Visual Effect Graph所需的计算着色器,例如:大多数的手机。


支持的数据类型

Visual Effect Graph支持使用Point Cache,Vector Field和Signed Distance Field等资源。通过这些资源的支持,可以表示体积、作用力、碰撞以及自定义数据类型。


· Point Cache保存空间中点的属性,例如:Transform、法线、颜色和UV。


· Vector Field在获取粒子的位置后,会在3D空间移动粒子。


· Signed Distance Field可以使用体积来表示吸引和碰撞粒子。


下面的示例是在其它工具制作骷髅,然后导入Unity来创建魔法效果。

321.gif


VFX Toolbox工具集

Visual Effect Graph团队开发了一系列工具用于生成数据类型,这些工具统称为VFX Toolbox工具集。通过VFX Toolbox创建的数据可以与Unity的其它功能结合使用。


下载VFX Toolbox工具集:


https://github.com/Unity-Technologies/VFXToolbox


1 Image Sequencer

Image Sequencer图像序列工具可以处理图像序列,生成Flipbook纹理图集等纹理资源。

image.png


2 Point Cache Bake Tool

Point Cache Bake Tool点缓存烘焙工具又名为pCache Tool,它可以从纹理生成2D点缓存,从网格生成3D点缓存。

image.png


使用技巧

1 便签,节点分组和名称

Visual Effect Graph带有一些实用功能,可以帮助注释和标记视图。

Unity官方平台


Context Names环境名称可以让你命名Context环境,只需双击Context环境标题部分的小型区域即可。


创建System Name系统名称,请双击虚线轮廓顶部下的小型区域。


Sticky Note便签功能可以创建可调整大小的文本框。创建标签,请在视图的空白区域单击右键,选择Create Sticky Note。


便签中,字体大小从Small到Huge共有四个选项,右键单击便签并从列表中选择修改字体大小。调整便签大小,可以拖动便签边缘或边角进行调整。


Node Group节点分组为节点的分组设置标题,并将它们作为整体进行移动。创建节点分组,请选择一组节点后,右键单击一个选中节点,然后选择Group Selection。


如果要移动节点到节点分组,将该节点拖入已有分组即可。如果要将节点移出分组,按住Shift键然后将其拖出分组。如果要删除分组而不删除节点,单击选中分组标题,然后按下Delete键即可。


2 Spawner Chaining

Spawner Chaining生成器链允许一个生成器开启或停止其它生成器。只要将Spawn Context的输出部分连接到Start或Stop即可。


下图中节点生成了持续2秒的常量流,停止2秒后会重复之前的操作。

image.png


2 GPU事件

GPU事件允许在自定义条件下或粒子消失时触发另一个粒子系统。下图中,节点会在粒子消失时生成10~15个粒子。


启用GPU事件,请打开Preferences>Visual Effects,勾选"Experimental Operators/Blocks"。

image.png


3 Timeline

Visual Effect Graph完全兼容Timeline功能,可以准确控制视觉效果的时间设置。你可以通过二种方法控制效果:事件和参数。


如果要控制时间,请在Timeline中创建Visual Effect Activation Track。如果要控制参数,请在Timeline中创建Animation Track。


下面的视频展示了如何设置这些轨道,从而使它们继承来自事件的数值。

Recommended Topics

Still brewing ideas... Bear with my inspiration~

Ic93678959

2025-12-18

Popularity0
upvote
Category
All Items
Topics
经验技巧
Label
Additional Tags
License
Study
Commercial
《Copyright Agreement》

After-Sales Rating

Reply(0)

0/200

Rating

Confirm
-There is no more.-
⠀购买该话题
将消耗0金币 <( _ _ )>

Receipt

  • My Coins
    0
  • Quantity
    1piece
  • Platform
    12% OFF
  • Discount
    0
  • Member
  • Discount
    0
  • Savings
    0
  • Pay Only
    0
Appreciate Your Reminder
Please clearly describe the issue
For copyright claims, provide your verification phone
  • Wrong Title
  • Ownership
  • Infringemen
  • Duplication
  • Request Update
  • I have content
Received by system. We will review within 48 hours
zancun_chenggong_tips
Friendly Reminder

╭ ( ‾ 3◝) Dingding fellows, **VFX.TOP** supported you. Support us too? (╭ ◁◝)ڡ

Back to TopBack to Top
  • Million-scale VFX Cases
  • Professional Category Attributes
  • A Decade of Focus | Advancing Forward
  • 98% Free | Maximized Value
  • Smart R&D Innovation

Copyright © 2023 GEEEU.COM

Shanghai Jiyu Digital Technology Co.

沪ICP备19040476号-2

Disclaimer:Platform cases are uploaded by the user, such as rights holders to confirm the existence of infringement, please click on the details page of the reminder button

Copyright Statement: The platform released resources have been protected by invisible encryption technology, any violation of the law can be traced back to the chain of evidence, the official and the rights holders will be pursued on this site

Copied Successfully
Become Creator (Unlock Publishing) Become Creator (Unlock Publishing)

Become a VFX.TOP Designer

——Unlock value in every pixel
  • Flexible: Earn anytime, anywhere
  • Fast Track: 1-minute signup, same-day approval
  • Showcase: Highlight your expertise
  • Secure: Alipay + biometric protection
  • Monetize: Transform talent into income
  • Opportunities: Industry collaborations
  • UNREAL
  • CG
  • Spine
  • Design
  • Houdini
  • Games
  • 3DMAX
  • Lens Studio
  • VR&AR
  • Art Asset
  • VR
  • Digital Art
  • AIGC
  • Motion Capture
  • UI
  • Interactive Media
  • Animation
  • Metaverse
  • Anime
  • MAYA
  • Video
  • Shaders
  • UNITY
  • Massive VFX resources to skyrocket your workflow. Sign up now—publish your own cases, share knowledge, and earn rewards. Win-win!

    User

    Bandai Anime VFX Artist

    Chisei
    Score 9.8
  • Bottomless resource library—how many years of curation is this?! I’ll share my works too (though not always online).

    User

    Unnamed VFX Master

    Socially Awkward FX Enthusiast
    Score 9.5
  • First visited during Spring Festival, now thriving with peers. Sharing my free assets - pay it forward!

    User

    VFX Director @ Top Studio

    Black Flag Rising
    Score 9.3
  • Used since beta testing. Signing as creator today! Support my premium content drops~

    User

    VFX Lead @ Tencent

    Aldrich
    Score 9.6
  • Started as rookie at Jiyou team. Now stable income at R&D studio. Sharing references after verification!

    User

    10-Year VFX Veteran

    Let There Be Light
    Score 8.8
  • Immediate love at first click. Solving work blocks with community inspiration. Growing through creator collabs!

    User

    Independent VFX Artist

    墨羽君
    Score 9.1
  • VFX artist paradise! Affordable VIP. Monetize assets as verified creator.

    User

    AAA VFX Lead

    低脂奶泡泡
    Score 10
  • First specialized VFX resource hub. Perfect for creative sourcing. Sharing my archives soon!

    User

    Asset Director @ Elite Studio

    10PM Sleeper
    Score 9.5

VFX artists

.

Virtual world creators.

Credit: FX Designer @DICE小谢 for the image Credit: FX Designer @DICE小谢 for the image

VFX.TOP用户协议

I.Key Provisions & Notices

The headings of clauses in this Agreement are provided solely for ease of reference and to facilitate understanding of the core intent of each provision. They shall not affect, modify, or restrict the interpretation or legal effect of the terms herein. To protect your legal rights, you are strongly advised to carefully review the full text of all clauses.

Prior to clicking "Agree" during the registration process, you must thoroughly read this Agreement. Exercise due diligence in reviewing and fully comprehending all terms, with particular attention to clauses addressing liability exemptions/limitations, governing law, and dispute resolution mechanisms. If any provision is unclear, contact GEEEU Digital Technology for clarification.

By completing the registration process—including providing required information, reviewing this Agreement, and actively selecting "I Agree" or "I Confirm"—you will be deemed to have fully read, understood, and accepted all terms of this Agreement, thereby entering into a legally binding agreement with GEEEU Digital Technology and officially becoming a registered "User" of the GEEEU Platform (defined as the website "VFX.TOP" and its affiliated pages, owned and operated by Shanghai GEEEU Digital Technology Co., Ltd.). If you disagree with any provision during the review process, you must cease registration immediately. For existing users who accessed or used the GEEEU Platform without completing registration or were registered prior to this Agreement’s effective date, continued access or use constitutes irrevocable acceptance of this Agreement; non-acceptance requires complete discontinuation of Platform use.

This Agreement governs all services provided by GEEEU Digital Technology across platforms, including but not limited to web-based interfaces, mobile applications (iOS, Android, and future platforms), and any emerging digital mediums. You acknowledge and agree that to utilize these services, you must provide your own internet-enabled devices (e.g., PCs, smartphones, tablets) and bear all associated costs, including network fees and service payments.


II. Scope of Agreement
2.1 Contracting Parties
This Agreement is jointly concluded between you and Shanghai GEEEU Digital Technology Co., Ltd. (operator of the "VFX.TOP" platform, hereinafter referred to as "GEEEU Digital Technology") and is legally binding on both parties.
The operator of the GEEEU Platform may change due to business adjustments, in which case the successor operator shall continue to perform this Agreement and provide services to you. Such changes shall not affect your rights or obligations under this Agreement.
2.2 Supplementary Agreements
Given the rapid evolution of the internet industry and legal frameworks, the terms herein may not exhaustively enumerate all rights and obligations between you and GEEEU Digital Technology, nor fully address future developments. Therefore, any legal declarations publicly issued by GEEEU Digital Technology shall constitute supplementary agreements to this Agreement. By using GEEEU’s services, you expressly agree to be bound by such supplementary terms.
III. Account Registration & Usage
3.1 User Eligibility
You confirm that prior to registering for or using GEEEU’s services, you possess the civil capacity commensurate with your actions under the laws of the People’s Republic of China. If you lack such capacity, you may only complete registration after your legal guardian has thoroughly reviewed and consented to this Agreement.
3.2 Account Terms
Account Creation: Upon completing the registration process—including providing required information, reviewing this Agreement, and confirming acceptance—you will obtain a GEEEU account (i.e., User ID) and become a registered User. Ownership of the account resides with GEEEU Digital Technology, while you retain usage rights post-registration.
Account Usage: You may log into the GEEEU Platform using your registered username, email, mobile number (collectively, "Account ID"), or password. As your account is linked to personal and commercial data, it is strictly for your personal use. Unauthorized third-party access or indirect authorization to use your account is prohibited. Violations may result in account suspension, forfeiture of unused VIP privileges, and liability for damages. GEEEU reserves the right to terminate services if account misuse threatens security.
Account Transfer: Account transfers (limited to usage rights) are permitted only under legally mandated circumstances, judicial rulings, or explicit GEEEU consent via approved procedures. Transferred accounts inherit all associated rights and obligations. Unauthorized transfers, gifts, leases, or sales constitute breaches of this Agreement, subjecting you to liability.
Real-Name Verification: To enhance service quality and account security, GEEEU may require real-name verification per applicable laws and internal policies.
Account Reclamation: Accounts inactive for over one year may be deactivated or frozen, terminating all associated services. Prior notice will be provided via platform announcements or direct notifications.
Download Restrictions: To safeguard platform integrity, GEEEU may impose download limits (e.g., CAPTCHA verification for >5 downloads/second, temporary restrictions for excessive activity) without liability. Users may appeal restrictions, but GEEEU retains final discretion on enforcement.
Account Deletion: You may request account deletion, but remain liable for pre-deletion actions. Deleted accounts and associated data are irrecoverable.
Account Recovery: Lost accounts may be recovered through GEEEU’s verification process, which matches submitted information with system records. However, GEEEU cannot guarantee rightful ownership. You are solely responsible for securing your credentials and liable for losses due to negligence or force majeure.
3.3 Registration Information Management
3.3.1 Authenticity & Compliance
You must provide accurate and complete information (including name, email, contact number, and address) as prompted during registration to enable GEEEU Digital Technology ("GEEEU") to contact you when necessary. You are obligated to maintain the truthfulness and validity of such information.
Account names must comply with PRC laws and GEEEU’s naming policies. Violations may result in suspension, termination, or regulatory reporting.
You further warrant that your account name, profile image, and descriptions shall not contain illegal or harmful content, impersonate organizations/public figures, or violate legal/ethical standards (including national interests, public order, social morality, and information authenticity).
To enhance service quality and security, you authorize GEEEU to verify your identity through legally permissible channels (e.g., cross-checking mobile numbers, ID cards with national identity databases, telecom carriers, or financial institutions).

3.3.2 Updates & Verification

You must promptly update your information. Where laws mandate user verification, GEEEU may periodically audit your details, and you shall cooperate by providing current, truthful, and complete documentation.

Failure to respond to GEEEU’s outreach using your last-provided information, delayed updates, or submission of false data will render you liable for all resulting losses (to yourself, third parties, or GEEEU).
3.4 Account Security Obligations
You are solely responsible for safeguarding your account. Always log out securely after each session. Losses from voluntary credential disclosure, hacking, or fraud are borne entirely by you.
Accounts are strictly personal. Unauthorized sharing is prohibited. Immediately notify GEEEU of any unauthorized access; otherwise, such activities will be deemed your own actions, incurring full liability.
You assume full responsibility for all account activities (e.g., signing agreements, posting content, purchases) unless caused by GEEEU’s proven negligence. Report suspected breaches promptly. GEEEU shall act on such reports within a reasonable timeframe but disclaims liability for pre-action consequences absent gross negligence.
3.5 Account Independence
3.5.1 A single entity’s QQ and WeChat accounts are treated as separate accounts when logging into GEEEU VIP services.
3.5.2 Multiple QQ accounts under one entity are recognized as distinct accounts.
3.5.3 Multiple WeChat accounts under one entity are recognized as distinct accounts.
3.5.4 VIP privileges, recharge records, and benefits cannot be transferred, gifted, sold, or shared between accounts—even if owned by the same individual. Exercise caution during logins, recharges, or promotions to avoid losses, which shall be solely borne by the user.
3.5.5 No refunds will be issued for voluntarily canceled memberships, terminated accounts, or revoked VIP status per GEEEU’s published policies.
3.5.6 For membership-related inquiries, contact GEEEU’s customer service via official channels.
IV. GEEEU Services & Guidelines
4.1 GEEEU Services
GEEEU Digital Technology ("GEEEU") provides the following services (collectively, the "GEEEU Services"):
1.GEEEU Website Services; 2.VIP Membership Services (paid subscription services). For fee-based services, GEEEU will provide clear notice prior to use. Access is granted only upon user confirmation of payment. GEEEU reserves the right to deny services if payment is refused. 3.Content Upload Services (e.g., sharing images, documents); 4.Search Services; 5.Download Services; 6.Other Technical Services.
4.2 Service Guidelines
4.2.1 Content Responsibility
You may upload, publish, or transmit content (including text, software, graphics, audio, video, links, etc.) through GEEEU Services, but you assume full legal responsibility for such content. This includes all information submitted via your account (e.g., icons, account details).
4.2.2 Intellectual Property
Unless proven otherwise, you are deemed the copyright owner of content uploaded to GEEEU. You warrant full ownership or legal authorization (including copyright, portrait rights, property rights) for all uploaded materials. Content must not infringe third-party rights (e.g., patents, trademarks, privacy). Violations may result in service termination, account suspension, or liability for damages.
4.2.3 License Grant
By using GEEEU Services, you grant GEEEU a perpetual, irrevocable, royalty-free license to store, use, reproduce, adapt, distribute, and commercially exploit your content globally. This includes rights to: Modify, translate, or create derivative works; Integrate content into other media/technologies; Promote content across devices (e.g., mobile, TV, IoT); Sub-license to third parties; Enforce intellectual property rights. You agree to comply with PRC laws, including the Cybersecurity Law, Copyright Law, and Regulations on Internet Information Services. GEEEU may terminate services immediately if violations are suspected.
4.3 Service Modifications, Interruptions, or Termination
4.3.1 General Terms
Due to the nature of internet services, GEEEU may alter, suspend, or terminate services (including paid services) without liability. For paid services, prior notice will be provided.
4.3.2 Maintenance
GEEEU may perform platform maintenance, causing temporary service interruptions. No liability applies for reasonable downtime, though advance notice will be given where feasible.


4.3.3 Termination Grounds
GEEEU may terminate services without liability if you:
1) Provide false information;
2) Violate this Agreement;
3) Fail to pay fees;
4) Engage in cyberattacks, data theft, or network interference;
5) Develop/distribute hacking tools;
6) Aid illegal activities (e.g., unauthorized system access);
7) Probe/exploit platform vulnerabilities;
8) Disrupt services via malware or spam;
9) Spoof network protocols;
10) Reverse-engineer platform code;
11) Violate laws or GEEEU policies.
4.4 Additional Guidelines
Data Sharing: You authorize GEEEU to share registration/usage data with affiliates for service integration.
Content Liability: GEEEU disclaims responsibility for third-party content accuracy, safety, or legality. Use at your own risk.
Advertising: You consent to receive promotional messages via email, SMS, or in-platform notices. Opt-out options are available.
4.5 Usage Rules
4.5 When using GEEEU’s network services, users must adhere to the following principles:
4.5.1 Comply with all applicable laws and regulations of China.
4.5.2 Follow all network protocols, rules, and procedures related to GEEEU’s services.
4.5.3 Do not use the service system for any illegal purpose.
4.5.4 Do not engage in any activity that may disrupt the normal operation of the internet through GEEEU’s services.
4.5.5 Do not upload, display, or disseminate false, harassing, defamatory, abusive, threatening, vulgar, obscene, or otherwise unlawful information.
4.5.6 Do not infringe upon the patent rights, copyrights, trademarks, reputation rights, portrait rights, privacy rights, property rights, or any other legitimate rights and interests of third parties.
4.5.7 Do not use GEEEU’s network services to engage in any activity detrimental to GEEEU.
4.5.8 Immediately notify GEEEU upon discovering any unauthorized use of your account or security vulnerabilities.
4.5.9 Users downloading works from GEEEU must use them strictly within the scope of authorized licenses. Without written permission from the copyright owner or GEEEU, works are limited to personal study and exchange. Users shall not, and shall not permit or assist others, to use, rent, lend, distribute, display, copy, modify, link, reprint, compile, publish, capture, monitor, reference, or create derivative works through any means (including but not limited to bots, spiders, screenshot tools, etc.), and must comply with the Copyright Law and other relevant regulations.
4.5.10 Do not produce, publish, reproduce, access, disseminate, store, or link to the following information:
(1) Content opposing the fundamental principles established by the Constitution;
(2) Content endangering national security or disclosing state secrets;
(3) Content inciting subversion of state power, overthrowing the socialist system, or undermining national unity;
(4) Content harming national honor and interests;
(5) Content promoting terrorism or extremism;
(6) Content inciting ethnic hatred, discrimination, or undermining ethnic unity;
(7) Content inciting regional discrimination or hatred;
(8) Content violating national religious policies or promoting cults and superstitions;
(9) Fabricated or false information that disrupts economic/social order or social stability;
(10) Content disseminating violence, obscenity, pornography, gambling, murder, terror, or criminal incitement;
(11) Content infringing on minors’ rights or harming their physical/mental health;
(12) Unauthorized photography/recording infringing others’ lawful rights;
(13) Content containing terror, violence, high-risk activities, or endangering performers’/others’ health;
(14) Activities harming cybersecurity or exploiting the internet to endanger national security, honor, or interests;
(15) Content defaming or slandering others, infringing lawful rights;
(16) Violent threats, intimidation, or doxxing (unauthorized personal information searches);
(17) Content involving others’ privacy, personal information, or data;
(18) Vulgar language undermining social morality or public order;
(19) Content infringing others’ privacy, reputation,肖像权 (portrait rights), intellectual property, trade secrets, etc.;
(20) Unauthorized use of the service to promote third-party advertisements (including embedded links or ads);
(21) Excessive marketing, spam, harassing messages, vulgar content, or unsolicited ads;
(22) Content created, uploaded, or disseminated in languages other than the platform’s primary language(s);
(23) Content irrelevant to the posted material, comments, or messages;
(24) Meaningless content or intentionally obfuscated text to evade technical review;
(25) Any other information violating laws, policies, public order, or infringing user/third-party rights.
4.5.11 Do not reproduce or use unauthorized files from the internet. Without explicit consent from copyright holders, do not crack, distribute, download, or reproduce copyrighted software or engage in other intellectual property infringements.
4.5.12 Do not engage in activities jeopardizing computer network security, including:
Cracking, damaging, deleting, or modifying network services, hardware, or software;
Altering data or applications stored/transmitted in computer networks;
Using software/hardware to steal passwords or illegally access others’ computer systems;
Creating or spreading computer viruses or other destructive programs;
Any other activities harming computer network security.
4.6 You understand and agree that, to enhance service quality, GEEEU or its authorized third-party partners/advertisers may send promotional information (e.g., product ads, discounts) to your registered mobile number or email. The methods and scope may change without prior notice. If you wish to opt out, follow GEEEU’s provided unsubscribe procedures.
V. Fees
5.1 GEEEU incurs substantial costs in providing services to you and reserves the right to charge fees under its policies to cover website maintenance expenses.
5.2 Refunds
Due to the unique nature of download services, refunds will not be accepted once files are downloaded and stored on your device, except in cases where files are irreparably damaged. For unused download services, GEEEU accepts unconditional refund requests.
VI. Privacy Protection
6.1 Protecting user privacy is a fundamental policy of GEEEU. GEEEU will not disclose or provide individual user registration data or non-public content stored during service usage to third parties, except in the following circumstances:

6.1.1 Prior explicit consent from the user;
6.1.2 Legal or regulatory requirements;

6.1.3 Requests from government authorities;
6.1.4 To protect public interests;
6.2 GEEEU may collaborate with third parties to provide services. In such cases, if the third party agrees to assume privacy protection responsibilities equivalent to GEEEU’s, user registration data may be shared.
6.3 GEEEU may analyze and commercially utilize aggregated user databases without disclosing individual private data.
VII. Disclaimer
7.1 Users acknowledge that legal risks arising from using GEEEU’s services shall be borne by both parties as required by law.


7.2 GEEEU fulfills basic obligations under the law but disclaims liability for service interruptions or defects caused by force majeure or uncontrollable factors, to the extent permitted by law. Efforts will be made to mitigate user losses.
7.3 You agree that services may be interrupted or terminated due to force majeure—unforeseeable, unavoidable events such as network maintenance, system failures, power outages, strikes, natural disasters, wars, legal changes, or third-party actions. GEEEU will collaborate with relevant parties to resolve issues promptly but disclaims liability for resulting losses within legal limits.
7.4 To the extent permitted by law, GEEEU disclaims responsibility for service disruptions caused by:
(1) Computer viruses, malware, or hacker attacks;
(2) Software/hardware/communication failures on the user’s or GEEEU’s systems;



(3) User operational errors;
(4) Unauthorized use of services;
(5) Other uncontrollable or unforeseeable circumstances.
7.5 Unless explicitly stated in writing, GEEEU makes no express or implied warranties regarding the accuracy, completeness, or reliability of information, content, materials, products, or services on its platform.
VIII. Liability for Breach
8.1 If GEEEU violates applicable laws, regulations, or any terms of this Agreement, resulting in losses to users, GEEEU shall bear liability for corresponding damages.
8.2 Users agree to safeguard the interests of GEEEU and other users. If a user breaches laws, regulations, or this Agreement, causing harm to GEEEU or third parties, the user shall legally compensate for such damages.
IX. Notices
9.1 All notices from GEEEU to users under this Agreement may be delivered via website announcements, emails, or postal mail. Notices are deemed received on the date of transmission.
9.2 Notices from users to GEEEU must be sent to GEEEU’s officially published contact details (e.g., postal address, fax, email).
X. Governing Law
10.1 The execution, interpretation, and dispute resolution of this Agreement shall be governed by the laws of China and subject to the jurisdiction of Chinese courts.
10.2 Any disputes arising from this Agreement shall first be resolved through amicable negotiation. If unresolved, either party may file a lawsuit with the People’s Court where GEEEU is located.
XI. Miscellaneous

11.1 This Agreement constitutes the entire understanding between the parties, superseding all prior agreements, and grants no additional rights beyond those expressly stated herein.

11.2 If any provision of this Agreement is deemed invalid or unenforceable, the remaining provisions shall remain valid and binding.
11.3 Section headings are for convenience only and shall not affect interpretation.
11.4 Use download accounts responsibly. Accounts engaging in malicious scraping or unauthorized image downloads will be suspended. Contact customer service for inquiries.
11.5 GEEEU disclaims liability for losses caused by using software obtained from unauthorized third parties.
11.6 You acknowledge risks such as exposure to harmful, defamatory, or illegal content from anonymous users. Exercise caution and report violations to GEEEU or authorities. GEEEU conducts routine content reviews and addresses reports but disclaims responsibility for third-party content or damages.
11.7 [Severability] If any provision is invalidated, the remainder of the Agreement shall remain enforceable.
For questions or suggestions regarding this Agreement, contact GEEEU’s customer service during business hours.
Thank you for your careful review!


Select Login Method | QR Auto-Refresh
agree to terms
Scan QR
  • Enter Phone#

Login/Register

Stay signed in for 10 days

I agree to the《User Agreement》

Match to Verify
Close Refresh

不能为空

It\'s a pity
▶ Not a contracted designer _(:з)∠)_
Friendly Reminder
Remove from Cart?
OK
Friendly Reminder
Your VIP level lacks download rights. Access requires:1Gold Coins
Friendly Reminder
Friendly Reminder
Friendly Reminder
Your cart is full. Filter items or check out first.
zancun_chenggong_tips
zancun_chenggong_tips
zancun_chenggong_tips
System Notice