Zho:分身

来自GHGWIKI

En:Cloning De:Klonen Id:Cloning

Ru:Клонирование

Ja:クローン(clone)

File:Clones.png
A visual interpretation of how cloning works. The clones of a parent sprite can be different, as the facial expressions show.

Cloning is a feature that allows a 角色 to create a clone, or semi-duplicate, of itself, while the 专案 is running. This can be useful in tower defense games, for example, for a wave of objects. Clones of a sprite will be the same as the original, or parent sprite, but as a separate instance. Clones inherit the parent's scripts, costumes, sounds, and properties, but can then be modified. There is a limit of 300 clones per project to prevent excessive lagging or crashes,[1] but 301 can be made.

Cloning 积木相关[编辑]

In Scratch 2.0, there are three blocks related to cloning. All can be found in the Control palette.

Create Clone of ()[编辑]

<scratchblocks>分身 [自己 v] 建立</scratchblocks>

This block will clone the sprite it runs in. Its version in the Scratch Day 2011 prealpha had no dropdown insert to select a sprite.

<scratchblocks>create clone // category=control</scratchblocks>

It is also possible to clone other clones recursively.

When I Start as a Clone[编辑]

<scratchblocks>當分身產生</scratchblocks>

This 半圆形积木 activates when a clone is created. It only runs in the newly created clone, not previous clones or the parent.

Delete This Clone[编辑]

<scratchblocks>分身刪除</scratchblocks>

This 平底形积木 will delete the clone it runs in.

Duplicating Sprites[编辑]

Not to be confused with cloning, sprites can be duplicated by two methods:

  1. Right click on a sprite in the sprites area or stage, and select "duplicate".
  2. Select the duplicate tool (looks like a stamp) above the stage area and to the left of the presentation buttons. Then click on the sprite you want to be duplicated.

This will make the new sprite appear in the new sprites area with all of the same costumes, scripts, and sounds.

Variable Usage[编辑]

变量s for all sprites will be the same for each clone, but variables for this sprite only will be different for each clone.

Cloning in Scratch Mods[编辑]

There are two different types of cloning implemented in different Scratch modifications. They are commonly referred to as "Panther-style cloning", and "BYOB-style cloning".

In Panther-style cloning, a clone inherits its parent's properties, but is only a clone of it, not a new sprite. Other sprites can sense the clones, using the 碰到 ()?积木, with the parent as its 参数. The code for Panther-style cloning was actually implemented in Scratch 1.4, hinting that it was a planned feature, but wasn't added. Scratch 2.0 uses this style of cloning.

In BYOB-style cloning, a clone is a new sprite in the sprite list, with editable data all of its own. Clones are created with an Operators 积木 "(clone)", which clones a sprite and reports a reference to it, which can then be used to control it.

参见[编辑]

参考[编辑]