Unity引擎开发:物理引擎与碰撞检测_(15).物理引擎在游戏中的应用案例

物理引擎在游戏中的应用案例

在上一节中,我们详细探讨了 Unity 引擎中的物理引擎基础,包括刚体组件、碰撞器组件以及力的应用等。接下来,我们将通过具体的虚拟现实游戏应用案例,进一步展示如何在 Unity 中使用物理引擎和碰撞检测来创建真实感十足的游戏体验。

1. 虚拟现实射击游戏

在虚拟现实射击游戏中,物理引擎和碰撞检测是核心功能之一,它们确保子弹的发射和敌人的反应更加真实。我们可以通过以下步骤来实现这一功能:

1.1 创建子弹刚体

首先,我们需要创建一个子弹预制体,并为其添加刚体组件。这将使子弹能够受到重力和碰撞的影响。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Bullet

  2. 为其添加一个 SphereCollider 组件,以模拟子弹的形状。

  3. 为其添加一个 Rigidbody 组件,设置 Mass 为 0.1,Drag 为 0,Use GravityFalse

  4. 为其添加一个 MeshRenderer 组件,并选择一个合适的子弹模型。


// Bullet.cs

using UnityEngine;



public class Bullet : MonoBehaviour

{

    public float speed = 20f;



    void Start()

    {

        // 向前发射子弹

        Rigidbody rb = GetComponent<Rigidbody>();

        rb.velocity = transform.forward * speed;

    }



    void OnCollisionEnter(Collision collision)

    {

        // 当子弹碰撞到物体时,销毁子弹

        Destroy(gameObject);

    }

}

1.2 创建敌人刚体

接下来,我们需要创建一个敌人预制体,并为其添加刚体组件和碰撞器组件,以模拟敌人的物理行为。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Enemy

  2. 为其添加一个 BoxCollider 组件,以模拟敌人的形状。

  3. 为其添加一个 Rigidbody 组件,设置 Mass 为 1,Drag 为 0,Use GravityTrue


// Enemy.cs

using UnityEngine;



public class Enemy : MonoBehaviour

{

    public float health = 100f;



    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为子弹

        Bullet bullet = collision.gameObject.GetComponent<Bullet>();

        if (bullet != null)

        {

            // 减少敌人生命值

            health -= 20f;



            if (health <= 0)

            {

                // 敌人死亡,销毁对象

                Destroy(gameObject);

            }

        }

    }

}

1.3 创建玩家控制器

最后,我们需要创建一个玩家控制器,以实现子弹的发射和玩家的移动。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Player

  2. 为其添加一个 CapsuleCollider 组件和 Rigidbody 组件,以模拟玩家的物理行为。

  3. 为其添加一个 FirstPersonController 组件,以便玩家可以使用 VR 控制器进行操作。


// PlayerController.cs

using UnityEngine;



public class PlayerController : MonoBehaviour

{

    public GameObject bulletPrefab;

    public Transform firePoint;

    public float bulletSpeed = 20f;



    void Update()

    {

        // 检测 VR 控制器的扳机按键

        if (OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger))

        {

            // 发射子弹

            Shoot();

        }

    }



    void Shoot()

    {

        // 实例化子弹预制体

        GameObject bullet = Instantiate(bulletPrefab, firePoint.position, firePoint.rotation);



        // 设置子弹速度

        Rigidbody rb = bullet.GetComponent<Rigidbody>();

        rb.velocity = firePoint.forward * bulletSpeed;

    }

}

2. 虚拟现实赛车游戏

在虚拟现实赛车游戏中,物理引擎和碰撞检测可以用来模拟车辆的驾驶行为和赛道上的碰撞。我们可以通过以下步骤来实现这一功能:

2.1 创建车辆刚体

首先,我们需要创建一个车辆预制体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Car

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的车辆模型。

  3. 为其添加一个 BoxCollider 组件,以模拟车辆的形状。

  4. 为其添加一个 Rigidbody 组件,设置 Mass 为 1000,Drag 为 0.5,Use GravityTrue


// Car.cs

using UnityEngine;



public class Car : MonoBehaviour

{

    public float forwardThrust = 500f;

    public float turnSpeed = 50f;

    public Rigidbody rb;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

    }



    void Update()

    {

        // 获取 VR 控制器的输入

        float forwardInput = OVRInput.Get(OVRInput.Axis1D.PrimaryHandTrigger, OVRInput.Hand.Left);

        float turnInput = OVRInput.Get(OVRInput.Axis1D.PrimaryIndexTrigger, OVRInput.Hand.Left);



        // 应用力使车辆前进

        rb.AddForce(transform.forward * forwardInput * forwardThrust);



        // 应用力使车辆转向

        rb.AddTorque(transform.up * turnInput * turnSpeed);

    }



    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为赛道边缘

        if (collision.gameObject.CompareTag("TrackEdge"))

        {

            // 车辆碰撞赛道边缘时,减少速度

            rb.velocity *= 0.5f;

        }

    }

}

2.2 创建赛道边缘

接下来,我们需要创建赛道边缘的碰撞器,以模拟车辆在赛道边缘的碰撞行为。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 TrackEdge

  2. 为其添加一个 BoxCollider 组件,以模拟赛道边缘的形状。

  3. TrackEdge 标签设置为 TrackEdge


// TrackEdge.cs

using UnityEngine;



public class TrackEdge : MonoBehaviour

{

    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为车辆

        Car car = collision.gameObject.GetComponent<Car>();

        if (car != null)

        {

            // 车辆碰撞赛道边缘时,减少速度

            car.rb.velocity *= 0.5f;

        }

    }

}

3. 虚拟现实物理谜题游戏

在虚拟现实物理谜题游戏中,物理引擎和碰撞检测可以用来模拟物体的运动和相互作用。我们可以通过以下步骤来实现这一功能:

3.1 创建可移动的物体

首先,我们需要创建一个可移动的物体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 MovableObject

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的物体模型。

  3. 为其添加一个 BoxCollider 组件,以模拟物体的形状。

  4. 为其添加一个 Rigidbody 组件,设置 Mass 为 1,Drag 为 0,Use GravityTrue


// MovableObject.cs

using UnityEngine;



public class MovableObject : MonoBehaviour

{

    public Rigidbody rb;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

    }



    void OnMouseDown()

    {

        // 当物体被点击时,应用力

        rb.AddForce(Vector3.up * 100f, ForceMode.Impulse);

    }



    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为目标物体

        if (collision.gameObject.CompareTag("Goal"))

        {

            // 物体到达目标,触发胜利条件

            Debug.Log("You win!");

        }

    }

}

3.2 创建目标物体

接下来,我们需要创建一个目标物体,以模拟玩家需要移动物体到达的目标位置。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Goal

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的目标物体模型。

  3. 为其添加一个 BoxCollider 组件,以模拟目标物体的形状。

  4. Goal 标签设置为 Goal


// Goal.cs

using UnityEngine;



public class Goal : MonoBehaviour

{

    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为可移动物体

        MovableObject movableObject = collision.gameObject.GetComponent<MovableObject>();

        if (movableObject != null)

        {

            // 物体到达目标,触发胜利条件

            Debug.Log("You win!");

        }

    }

}

4. 虚拟现实运动模拟游戏

在虚拟现实运动模拟游戏中,物理引擎和碰撞检测可以用来模拟运动器械的物理行为和玩家的互动。我们可以通过以下步骤来实现这一功能:

4.1 创建运动器械刚体

首先,我们需要创建一个运动器械预制体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 ExerciseMachine

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的运动器械模型。

  3. 为其添加一个 BoxCollider 组件,以模拟运动器械的形状。

  4. 为其添加一个 Rigidbody 组件,设置 Mass 为 50,Drag 为 0.5,Use GravityTrue


// ExerciseMachine.cs

using UnityEngine;



public class ExerciseMachine : MonoBehaviour

{

    public float resistance = 100f;

    public Rigidbody rb;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

    }



    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为玩家

        if (collision.gameObject.CompareTag("Player"))

        {

            // 应用阻力

            rb.AddForce(-collision.contacts[0].normal * resistance, ForceMode.Force);

        }

    }

}

4.2 创建玩家控制器

接下来,我们需要创建一个玩家控制器,以实现玩家与运动器械的互动。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Player

  2. 为其添加一个 CapsuleCollider 组件和 Rigidbody 组件,以模拟玩家的物理行为。

  3. 为其添加一个 FirstPersonController 组件,以便玩家可以使用 VR 控制器进行操作。


// PlayerController.cs

using UnityEngine;



public class PlayerController : MonoBehaviour

{

    public float moveSpeed = 5f;

    public Rigidbody rb;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

    }



    void Update()

    {

        // 获取 VR 控制器的输入

        float horizontalInput = OVRInput.Get(OVRInput.Axis1D.PrimaryIndexTrigger, OVRInput.Hand.Left);

        float verticalInput = OVRInput.Get(OVRInput.Axis1D.PrimaryHandTrigger, OVRInput.Hand.Left);



        // 移动玩家

        Vector3 moveDirection = transform.forward * verticalInput + transform.right * horizontalInput;

        rb.AddForce(moveDirection * moveSpeed);

    }

}

5. 虚拟现实物理实验模拟

在虚拟现实物理实验模拟中,物理引擎和碰撞检测可以用来模拟各种物理现象,如重力、摩擦力和碰撞等。我们可以通过以下步骤来实现这一功能:

5.1 创建可拖动的物体

首先,我们需要创建一个可拖动的物体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 DraggableObject

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的物体模型。

  3. 为其添加一个 BoxCollider 组件,以模拟物体的形状。

  4. 为其添加一个 Rigidbody 组件,设置 Mass 为 1,Drag 为 0,Use GravityTrue


// DraggableObject.cs

using UnityEngine;



public class DraggableObject : MonoBehaviour

{

    public float dragForce = 100f;

    public Rigidbody rb;

    private Vector3 initialPosition;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

        initialPosition = transform.position;

    }



    void OnMouseDown()

    {

        // 当物体被点击时,记录初始位置

        initialPosition = transform.position;

    }



    void OnMouseDrag()

    {

        // 当物体被拖动时,计算新的位置

        Vector3 newPosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);

        newPosition.z = initialPosition.z;



        // 应用力使物体移动到新的位置

        rb.AddForce((newPosition - transform.position) * dragForce, ForceMode.Force);

    }



    void OnMouseUp()

    {

        // 当物体被释放时,重置初始位置

        initialPosition = transform.position;

    }



    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为地面

        if (collision.gameObject.CompareTag("Ground"))

        {

            // 物体碰撞地面时,记录碰撞信息

            Debug.Log("Object hit the ground at " + collision.contacts[0].point);

        }

    }

}

5.2 创建地面

接下来,我们需要创建一个地面物体,以模拟物体的碰撞行为。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Ground

  2. 为其添加一个 Plane 组件,以模拟地面的形状。

  3. 为其添加一个 BoxCollider 组件,以模拟地面的碰撞。

  4. Ground 标签设置为 Ground


// Ground.cs

using UnityEngine;



public class Ground : MonoBehaviour

{

    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为可拖动物体

        DraggableObject draggableObject = collision.gameObject.GetComponent<DraggableObject>();

        if (draggableObject != null)

        {

            // 物体碰撞地面时,记录碰撞信息

            Debug.Log("Object hit the ground at " + collision.contacts[0].point);

        }

    }

}

6. 虚拟现实物理沙盒游戏

在虚拟现实物理沙盒游戏中,物理引擎和碰撞检测可以用来模拟各种物理现象,如重力、摩擦力、碰撞和爆炸等。我们可以通过以下步骤来实现这一功能:

6.1 创建可破坏的物体

首先,我们需要创建一个可破坏的物体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 DestructibleObject

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的物体模型。

  3. 为其添加一个 BoxCollider 组件,以模拟物体的形状。

  4. 为其添加一个 Rigidbody 组件,设置 Mass 为 1,Drag 为 0,Use GravityTrue


// DestructibleObject.cs

using UnityEngine;



public class DestructibleObject : MonoBehaviour

{

    public float health = 100f;

    public float destructionThreshold = 0f;

    public Rigidbody rb;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

    }



    void OnCollisionEnter(Collision collision)

    {

        // 检查碰撞物体是否为子弹

        Bullet bullet = collision.gameObject.GetComponent<Bullet>();

        if (bullet != null)

        {

            // 减少物体生命值

            health -= 20f;



            if (health <= destructionThreshold)

            {

                // 物体生命值低于阈值,销毁物体

                Destroy(gameObject);

            }

        }

    }

}

6.2 创建子弹

接下来,我们需要创建一个子弹预制体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Bullet

  2. 为其添加一个 SphereCollider 组件,以模拟子弹的形状。

  3. 为其添加一个 Rigidbody 组件,设置 Mass 为 0.1,Drag 为 0,Use GravityFalse


// Bullet.cs

using UnityEngine;



public class Bullet : MonoBehaviour

{

    public float speed = 20f;



    void Start()

    {

        // 向前发射子弹

        Rigidbody rb = GetComponent<Rigidbody>();

        rb.velocity = transform.forward * speed;

    }



    void OnCollisionEnter(Collision collision)

    {

        // 当子弹碰撞到物体时,销毁子弹

        Destroy(gameObject);

    }

}

6.3 创建玩家控制器

最后,我们需要创建一个玩家控制器,以实现子弹的发射和玩家的移动。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Player

  2. 为其添加一个 CapsuleCollider 组件和 Rigidbody 组件,以模拟玩家的物理行为。

  3. 为其添加一个 FirstPersonController 组件,以便玩家可以使用 VR 控制器进行操作。


// PlayerController.cs

using UnityEngine;



public class PlayerController : MonoBehaviour

{

    public GameObject bulletPrefab;

    public Transform firePoint;

    public float bulletSpeed = 20f;



    void Update()

    {

        // 检测 VR 控制器的扳机按键

        if (OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger))

        {

            // 发射子弹

            Shoot();

        }

    }



    void Shoot()

    {

        // 实例化子弹预制体

        GameObject bullet = Instantiate(bulletPrefab, firePoint.position, firePoint.rotation);



        // 设置子弹速度

        Rigidbody rb = bullet.GetComponent<Rigidbody>();

        rb.velocity = firePoint.forward * bulletSpeed;

    }

}

7. 虚拟现实物理交互游戏

在虚拟现实物理交互游戏中,物理引擎和碰撞检测可以用来模拟玩家与环境的交互,如拾取物体、推动物体等。我们可以通过以下步骤来实现这一功能:

7.1 创建可拾取的物体

首先,我们需要创建一个可拾取的物体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 PickableObject

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的物体模型。

  3. 为其添加一个 BoxCollider 组件,以模拟物体的形状。

  4. 为其添加一个 Rigidbody 组件,设置 Mass 为 1,Drag 为 0,Use GravityTrue


// PickableObject.cs

using UnityEngine;



public class PickableObject : MonoBehaviour

{

    public float pickUpDistance = 1.5f;

    public Rigidbody rb;

    private bool isPickedUp = false;

    private Transform playerHand;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

    }



    void Update()

    {

        // 检测是否在拾取范围内

        if (Vector3.Distance(playerHand.position, transform.position) < pickUpDistance)

        {

            if (OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger))

            {

                // 玩家按下了扳机按键,拾取物体

                PickUp();

            }

        }



        // 如果物体被拾起,跟随玩家的手

        if (isPickedUp)

        {

            transform.position = playerHand.position;

            transform.rotation = playerHand.rotation;

        }

    }



    void PickUp()

    {

        // 拾取物体

        isPickedUp = true;

        rb.isKinematic = true;

        rb.useGravity = false;

        transform.SetParent(playerHand, true);

    }



    void Drop()

    {

        // 释放物体

        isPickedUp = false;

        rb.isKinematic = false;

        rb.useGravity = true;

        transform.SetParent(null);

    }



    void OnMouseUp()

    {

        // 当物体被释放时,调用 Drop 方法

        Drop();

    }

}

7.2 创建玩家控制器

接下来,我们需要创建一个玩家控制器,以实现玩家的拾取和释放物体的功能。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Player

  2. 为其添加一个 CapsuleCollider 组件和 Rigidbody 组件,以模拟玩家的物理行为。

  3. 为其添加一个 FirstPersonController 组件,以便玩家可以使用 VR 控制器进行操作。

  4. 为 VR 控制器创建一个手部模型,命名为 Hand,并将其作为 Player 的子对象。


// PlayerController.cs

using UnityEngine;

using OVRPlugin;



public class PlayerController : MonoBehaviour

{

    public Transform leftHand;

    public Transform rightHand;



    void Update()

    {

        // 检测左控制器的按键

        if (OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger, OVRInput.Hand.Left))

        {

            // 拾取物体

            PickUpObject(leftHand);

        }



        // 检测右控制器的按键

        if (OVRInput.Get(OVRInput.Button.PrimaryIndexTrigger, OVRInput.Hand.Right))

        {

            // 拾取物体

            PickUpObject(rightHand);

        }



        // 检测左控制器的释放按键

        if (OVRInput.GetUp(OVRInput.Button.PrimaryIndexTrigger, OVRInput.Hand.Left))

        {

            // 释放物体

            DropObject(leftHand);

        }



        // 检测右控制器的释放按键

        if (OVRInput.GetUp(OVRInput.Button.PrimaryIndexTrigger, OVRInput.Hand.Right))

        {

            // 释放物体

            DropObject(rightHand);

        }

    }



    void PickUpObject(Transform hand)

    {

        // 检测手部附近的物体

        Collider[] colliders = Physics.OverlapSphere(hand.position, 1.5f);

        foreach (Collider collider in colliders)

        {

            PickableObject pickableObject = collider.GetComponent<PickableObject>();

            if (pickableObject != null)

            {

                // 拾取物体

                pickableObject.playerHand = hand;

                pickableObject.PickUp();

                break;

            }

        }

    }



    void DropObject(Transform hand)

    {

        // 释放手部的物体

        foreach (Transform child in hand)

        {

            PickableObject pickableObject = child.GetComponent<PickableObject>();

            if (pickableObject != null)

            {

                // 释放物体

                pickableObject.Drop();

                break;

            }

        }

    }

}

8. 虚拟现实物理环境模拟

在虚拟现实物理环境模拟中,物理引擎和碰撞检测可以用来模拟复杂的环境交互,如水流、风力和动态物体等。我们可以通过以下步骤来实现这一功能:

8.1 创建动态环境物体

首先,我们需要创建一个动态环境物体,并为其添加刚体组件和碰撞器组件。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 DynamicEnvironmentObject

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的物体模型。

  3. 为其添加一个 BoxCollider 组件,以模拟物体的形状。

  4. 为其添加一个 Rigidbody 组件,设置 Mass 为 1,Drag 为 0,Use GravityTrue


// DynamicEnvironmentObject.cs

using UnityEngine;



public class DynamicEnvironmentObject : MonoBehaviour

{

    public Rigidbody rb;

    public float windForce = 5f;

    public float waterResistance = 10f;



    void Start()

    {

        rb = GetComponent<Rigidbody>();

    }



    void Update()

    {

        // 模拟风力

        rb.AddForce(Vector3.right * windForce, ForceMode.Force);

    }



    void OnCollisionStay(Collision collision)

    {

        // 检查碰撞物体是否为水

        if (collision.gameObject.CompareTag("Water"))

        {

            // 应用水的阻力

            rb.AddForce(-rb.velocity * waterResistance, ForceMode.Force);

        }

    }

}

8.2 创建水体

接下来,我们需要创建一个水体物体,以模拟物体在水中的行为。

  1. 在 Unity 编辑器中,创建一个新的 GameObject,命名为 Water

  2. 为其添加一个 MeshFilter 组件和 MeshRenderer 组件,选择一个合适的水体模型。

  3. 为其添加一个 BoxCollider 组件,以模拟水体的碰撞。

  4. Water 标签设置为 Water


// Water.cs

using UnityEngine;



public class Water : MonoBehaviour

{

    void OnCollisionStay(Collision collision)

    {

        // 检查碰撞物体是否为动态环境物体

        DynamicEnvironmentObject dynamicObject = collision.gameObject.GetComponent<DynamicEnvironmentObject>();

        if (dynamicObject != null)

        {

            // 应用水的阻力

            dynamicObject.rb.AddForce(-dynamicObject.rb.velocity * dynamicObject.waterResistance, ForceMode.Force);

        }

    }

}

9. 总结

通过上述案例,我们可以看到 Unity 的物理引擎和碰撞检测在虚拟现实游戏中扮演着至关重要的角色。它们不仅能够使游戏中的物体行为更加真实,还能够增强玩家的沉浸感和互动体验。无论是射击游戏、赛车游戏、物理谜题游戏、运动模拟游戏还是物理环境模拟游戏,物理引擎和碰撞检测都是实现这些效果的基础工具。

在实际开发中,开发者可以根据游戏的具体需求,灵活调整物理引擎的参数和碰撞检测的逻辑,以达到最佳的物理效果和游戏体验。希望这些案例能够帮助你更好地理解和应用 Unity 中的物理引擎和碰撞检测功能,创造出更多精彩的游戏内容。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值