Remove hook, tweak controls, add some stuff to the map
This commit is contained in:
parent
63ef26bab0
commit
ddd0fac556
@ -99,12 +99,6 @@ sprint={
|
|||||||
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":3,"pressure":0.0,"pressed":true,"script":null)
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":3,"pressure":0.0,"pressed":true,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
shoot_hook={
|
|
||||||
"deadzone": 0.5,
|
|
||||||
"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":5,"axis_value":1.0,"script":null)
|
|
||||||
, Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"canceled":false,"pressed":false,"double_click":false,"script":null)
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
[internationalization]
|
[internationalization]
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,18 @@
|
|||||||
[gd_scene load_steps=4 format=3 uid="uid://ddcoq5j1kntji"]
|
[gd_scene load_steps=4 format=3 uid="uid://7povmsfyrjf4"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://8nth3l65bb7r" path="res://models/grappling_hook.blend" id="1_nljl0"]
|
[ext_resource type="PackedScene" uid="uid://8nth3l65bb7r" path="res://models/grappling_hook.blend" id="1_nljl0"]
|
||||||
[ext_resource type="Script" path="res://scripts/GrapplingHook.cs" id="1_yecm5"]
|
|
||||||
|
[sub_resource type="CSharpScript" id="CSharpScript_4q8vt"]
|
||||||
|
script/source = "using Godot;
|
||||||
|
|
||||||
|
namespace Gmtk24 {
|
||||||
|
public partial class GrapplingHook : RigidBody3D {
|
||||||
|
public void OnCollisionEntered(Node node) {
|
||||||
|
Freeze = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"
|
||||||
|
|
||||||
[sub_resource type="BoxShape3D" id="BoxShape3D_rp2xw"]
|
[sub_resource type="BoxShape3D" id="BoxShape3D_rp2xw"]
|
||||||
size = Vector3(0.872498, 0.875122, 0.902222)
|
size = Vector3(0.872498, 0.875122, 0.902222)
|
||||||
@ -9,7 +20,7 @@ size = Vector3(0.872498, 0.875122, 0.902222)
|
|||||||
[node name="GrapplingHook" type="RigidBody3D"]
|
[node name="GrapplingHook" type="RigidBody3D"]
|
||||||
contact_monitor = true
|
contact_monitor = true
|
||||||
max_contacts_reported = 1
|
max_contacts_reported = 1
|
||||||
script = ExtResource("1_yecm5")
|
script = SubResource("CSharpScript_4q8vt")
|
||||||
|
|
||||||
[node name="grappling_hook" parent="." instance=ExtResource("1_nljl0")]
|
[node name="grappling_hook" parent="." instance=ExtResource("1_nljl0")]
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
[gd_scene load_steps=4 format=3 uid="uid://wjbuh7jk50nm"]
|
[gd_scene load_steps=3 format=3 uid="uid://wjbuh7jk50nm"]
|
||||||
|
|
||||||
[ext_resource type="Script" path="res://scripts/Player.cs" id="1_aff2a"]
|
[ext_resource type="Script" path="res://scripts/Player.cs" id="1_aff2a"]
|
||||||
[ext_resource type="PackedScene" uid="uid://ddcoq5j1kntji" path="res://scenes/grappling_hook.tscn" id="2_s04ug"]
|
|
||||||
|
|
||||||
[sub_resource type="CylinderShape3D" id="CylinderShape3D_rgktv"]
|
[sub_resource type="CylinderShape3D" id="CylinderShape3D_rgktv"]
|
||||||
height = 1.9
|
height = 1.9
|
||||||
@ -9,8 +8,9 @@ radius = 0.3
|
|||||||
|
|
||||||
[node name="Player" type="CharacterBody3D" node_paths=PackedStringArray("Eye")]
|
[node name="Player" type="CharacterBody3D" node_paths=PackedStringArray("Eye")]
|
||||||
script = ExtResource("1_aff2a")
|
script = ExtResource("1_aff2a")
|
||||||
|
JumpVelocity = 15.0
|
||||||
|
Gravity = 25.0
|
||||||
Eye = NodePath("PlayerEyeCamera")
|
Eye = NodePath("PlayerEyeCamera")
|
||||||
GrapplingHookInstantiable = ExtResource("2_s04ug")
|
|
||||||
|
|
||||||
[node name="PlayerEyeCamera" type="Camera3D" parent="."]
|
[node name="PlayerEyeCamera" type="Camera3D" parent="."]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.7, 0)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.7, 0)
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
using Godot;
|
|
||||||
|
|
||||||
namespace Gmtk24 {
|
|
||||||
public partial class GrapplingHook : RigidBody3D {
|
|
||||||
public void OnCollisionEntered(Node node) {
|
|
||||||
Freeze = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -11,12 +11,9 @@ namespace Gmtk24 {
|
|||||||
[Export]
|
[Export]
|
||||||
public float JumpBufferLengthSeconds = 0.2f;
|
public float JumpBufferLengthSeconds = 0.2f;
|
||||||
[Export]
|
[Export]
|
||||||
|
public float Gravity = 20;
|
||||||
|
[Export]
|
||||||
public Node3D Eye;
|
public Node3D Eye;
|
||||||
[ExportCategory("Grappling hook stuff")]
|
|
||||||
[Export]
|
|
||||||
public PackedScene GrapplingHookInstantiable;
|
|
||||||
[Export]
|
|
||||||
public float GrapplingHookInitialDistance = 1;
|
|
||||||
|
|
||||||
private float CurrentYaw = 0;
|
private float CurrentYaw = 0;
|
||||||
private float CurrentPitch = 0;
|
private float CurrentPitch = 0;
|
||||||
@ -36,20 +33,6 @@ namespace Gmtk24 {
|
|||||||
if (@event.IsActionPressed("jump")) {
|
if (@event.IsActionPressed("jump")) {
|
||||||
JumpBufferTime = JumpBufferLengthSeconds;
|
JumpBufferTime = JumpBufferLengthSeconds;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (@event.IsActionPressed("shoot_hook")) {
|
|
||||||
if (IsInstanceValid(SentHook)) {
|
|
||||||
GlobalPosition = SentHook.GlobalPosition;
|
|
||||||
SentHook.QueueFree();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
SentHook = GrapplingHookInstantiable.Instantiate<RigidBody3D>();
|
|
||||||
AddSibling(SentHook);
|
|
||||||
var direction = Eye.GlobalBasis * Vector3.Forward;
|
|
||||||
SentHook.GlobalPosition = Eye.GlobalPosition + direction * GrapplingHookInitialDistance;
|
|
||||||
SentHook.LookAt(SentHook.GlobalPosition + direction, Vector3.Up);
|
|
||||||
SentHook.ApplyCentralImpulse(direction * 50f);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void _Process(double delta) {
|
public override void _Process(double delta) {
|
||||||
@ -84,11 +67,16 @@ namespace Gmtk24 {
|
|||||||
Vector3 vel = Velocity;
|
Vector3 vel = Velocity;
|
||||||
vel.X = move.X;
|
vel.X = move.X;
|
||||||
vel.Z = move.Z;
|
vel.Z = move.Z;
|
||||||
vel += GetGravity() * (float)delta;
|
vel += Vector3.Down * Gravity * (float)delta;
|
||||||
if (IsOnFloor() && JumpBufferTime > 0) {
|
bool tooLow = Position.Y < 0;
|
||||||
|
bool askedToJump = (IsOnFloor() || tooLow) && JumpBufferTime > 0;
|
||||||
|
if (askedToJump) {
|
||||||
JumpBufferTime = 0;
|
JumpBufferTime = 0;
|
||||||
vel += Vector3.Up * JumpVelocity;
|
vel += Vector3.Up * JumpVelocity;
|
||||||
}
|
}
|
||||||
|
if (tooLow && vel.Y < 0) {
|
||||||
|
vel.Y = 0;
|
||||||
|
}
|
||||||
Velocity = vel;
|
Velocity = vel;
|
||||||
|
|
||||||
MoveAndSlide();
|
MoveAndSlide();
|
||||||
|
@ -15,6 +15,267 @@
|
|||||||
( 64 2048 0 ) ( 65 2048 0 ) ( 64 2048 1 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
( 64 2048 0 ) ( 65 2048 0 ) ( 64 2048 1 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
( 2048 64 0 ) ( 2048 64 1 ) ( 2048 65 0 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
( 2048 64 0 ) ( 2048 64 1 ) ( 2048 65 0 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
}
|
}
|
||||||
|
// brush 1
|
||||||
|
{
|
||||||
|
( -2048 1408 0 ) ( -2048 1409 0 ) ( -2048 1408 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 1408 0 ) ( -2048 1408 1 ) ( -2047 1408 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 1408 0 ) ( -2047 1408 0 ) ( -2048 1409 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 1920 384 ) ( -1536 1921 384 ) ( -1535 1920 384 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 1920 128 ) ( -1535 1920 128 ) ( -1536 1920 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1536 1920 128 ) ( -1536 1920 129 ) ( -1536 1921 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 2
|
||||||
|
{
|
||||||
|
( -1920 768 0 ) ( -1920 769 0 ) ( -1920 768 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1920 768 0 ) ( -1920 768 1 ) ( -1919 768 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1920 768 0 ) ( -1919 768 0 ) ( -1920 769 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1408 1280 768 ) ( -1408 1281 768 ) ( -1407 1280 768 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1408 1280 128 ) ( -1407 1280 128 ) ( -1408 1280 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1408 1280 128 ) ( -1408 1280 129 ) ( -1408 1281 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 3
|
||||||
|
{
|
||||||
|
( -2048 0 0 ) ( -2048 1 0 ) ( -2048 0 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 0 0 ) ( -2048 0 1 ) ( -2047 0 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 0 0 ) ( -2047 0 0 ) ( -2048 1 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 512 1280 ) ( -1536 513 1280 ) ( -1535 512 1280 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 512 128 ) ( -1535 512 128 ) ( -1536 512 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1536 512 128 ) ( -1536 512 129 ) ( -1536 513 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 4
|
||||||
|
{
|
||||||
|
( -2048 -640 0 ) ( -2048 -639 0 ) ( -2048 -640 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 -640 0 ) ( -2048 -640 1 ) ( -2047 -640 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 -640 0 ) ( -2047 -640 0 ) ( -2048 -639 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 -128 512 ) ( -1536 -127 512 ) ( -1535 -128 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 -128 128 ) ( -1535 -128 128 ) ( -1536 -128 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1536 -128 128 ) ( -1536 -128 129 ) ( -1536 -127 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 5
|
||||||
|
{
|
||||||
|
( -2048 -1408 0 ) ( -2048 -1407 0 ) ( -2048 -1408 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 -1408 0 ) ( -2048 -1408 1 ) ( -2047 -1408 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -2048 -1408 0 ) ( -2047 -1408 0 ) ( -2048 -1407 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 -896 768 ) ( -1536 -895 768 ) ( -1535 -896 768 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1536 -896 128 ) ( -1535 -896 128 ) ( -1536 -896 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1536 -896 128 ) ( -1536 -896 129 ) ( -1536 -895 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 6
|
||||||
|
{
|
||||||
|
( -1920 -2048 0 ) ( -1920 -2047 0 ) ( -1920 -2048 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1920 -2048 0 ) ( -1920 -2048 1 ) ( -1919 -2048 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1920 -2048 0 ) ( -1919 -2048 0 ) ( -1920 -2047 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1408 -1536 768 ) ( -1408 -1535 768 ) ( -1407 -1536 768 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1408 -1536 128 ) ( -1407 -1536 128 ) ( -1408 -1536 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1408 -1536 128 ) ( -1408 -1536 129 ) ( -1408 -1535 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 7
|
||||||
|
{
|
||||||
|
( -1280 -2048 0 ) ( -1280 -2047 0 ) ( -1280 -2048 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1280 -2048 0 ) ( -1280 -2048 1 ) ( -1279 -2048 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1280 -2048 0 ) ( -1279 -2048 0 ) ( -1280 -2047 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -768 -1536 384 ) ( -768 -1535 384 ) ( -767 -1536 384 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -768 -1536 128 ) ( -767 -1536 128 ) ( -768 -1536 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -768 -1536 128 ) ( -768 -1536 129 ) ( -768 -1535 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 8
|
||||||
|
{
|
||||||
|
( -512 -1920 0 ) ( -512 -1919 0 ) ( -512 -1920 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -512 -1920 0 ) ( -512 -1920 1 ) ( -511 -1920 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -512 -1920 0 ) ( -511 -1920 0 ) ( -512 -1919 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 0 -1408 768 ) ( 0 -1407 768 ) ( 1 -1408 768 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 0 -1408 128 ) ( 1 -1408 128 ) ( 0 -1408 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 0 -1408 128 ) ( 0 -1408 129 ) ( 0 -1407 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 9
|
||||||
|
{
|
||||||
|
( 256 -2048 0 ) ( 256 -2047 0 ) ( 256 -2048 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 256 -2048 0 ) ( 256 -2048 1 ) ( 257 -2048 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 256 -2048 0 ) ( 257 -2048 0 ) ( 256 -2047 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 768 -1536 1280 ) ( 768 -1535 1280 ) ( 769 -1536 1280 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 768 -1536 128 ) ( 769 -1536 128 ) ( 768 -1536 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 768 -1536 128 ) ( 768 -1536 129 ) ( 768 -1535 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 10
|
||||||
|
{
|
||||||
|
( 1280 -1536 0 ) ( 1280 -1535 0 ) ( 1280 -1536 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 -1536 0 ) ( 1280 -1536 1 ) ( 1281 -1536 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 -1536 0 ) ( 1281 -1536 0 ) ( 1280 -1535 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 -1024 512 ) ( 1792 -1023 512 ) ( 1793 -1024 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 -1024 128 ) ( 1793 -1024 128 ) ( 1792 -1024 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1792 -1024 128 ) ( 1792 -1024 129 ) ( 1792 -1023 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 11
|
||||||
|
{
|
||||||
|
( 1280 -768 0 ) ( 1280 -767 0 ) ( 1280 -768 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 -768 0 ) ( 1280 -768 1 ) ( 1281 -768 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 -768 0 ) ( 1281 -768 0 ) ( 1280 -767 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 -256 1280 ) ( 1792 -255 1280 ) ( 1793 -256 1280 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 -256 128 ) ( 1793 -256 128 ) ( 1792 -256 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1792 -256 128 ) ( 1792 -256 129 ) ( 1792 -255 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 12
|
||||||
|
{
|
||||||
|
( 1152 128 0 ) ( 1152 129 0 ) ( 1152 128 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1152 128 0 ) ( 1152 128 1 ) ( 1153 128 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1152 128 0 ) ( 1153 128 0 ) ( 1152 129 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1664 640 512 ) ( 1664 641 512 ) ( 1665 640 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1664 640 128 ) ( 1665 640 128 ) ( 1664 640 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1664 640 128 ) ( 1664 640 129 ) ( 1664 641 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 13
|
||||||
|
{
|
||||||
|
( 1280 768 0 ) ( 1280 769 0 ) ( 1280 768 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 768 0 ) ( 1280 768 1 ) ( 1281 768 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 768 0 ) ( 1281 768 0 ) ( 1280 769 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 1280 768 ) ( 1792 1281 768 ) ( 1793 1280 768 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 1280 128 ) ( 1793 1280 128 ) ( 1792 1280 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1792 1280 128 ) ( 1792 1280 129 ) ( 1792 1281 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 14
|
||||||
|
{
|
||||||
|
( 1280 1408 0 ) ( 1280 1409 0 ) ( 1280 1408 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 1408 0 ) ( 1280 1408 1 ) ( 1281 1408 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1280 1408 0 ) ( 1281 1408 0 ) ( 1280 1409 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 1920 384 ) ( 1792 1921 384 ) ( 1793 1920 384 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1792 1920 128 ) ( 1793 1920 128 ) ( 1792 1920 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1792 1920 128 ) ( 1792 1920 129 ) ( 1792 1921 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 15
|
||||||
|
{
|
||||||
|
( 384 1408 0 ) ( 384 1409 0 ) ( 384 1408 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 384 1408 0 ) ( 384 1408 1 ) ( 385 1408 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 384 1408 0 ) ( 385 1408 0 ) ( 384 1409 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 896 1920 1280 ) ( 896 1921 1280 ) ( 897 1920 1280 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 896 1920 128 ) ( 897 1920 128 ) ( 896 1920 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 896 1920 128 ) ( 896 1920 129 ) ( 896 1921 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 16
|
||||||
|
{
|
||||||
|
( -384 1280 0 ) ( -384 1281 0 ) ( -384 1280 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -384 1280 0 ) ( -384 1280 1 ) ( -383 1280 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -384 1280 0 ) ( -383 1280 0 ) ( -384 1281 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 128 1792 384 ) ( 128 1793 384 ) ( 129 1792 384 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 128 1792 128 ) ( 129 1792 128 ) ( 128 1792 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 128 1792 128 ) ( 128 1792 129 ) ( 128 1793 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 17
|
||||||
|
{
|
||||||
|
( -1280 1408 0 ) ( -1280 1409 0 ) ( -1280 1408 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1280 1408 0 ) ( -1280 1408 1 ) ( -1279 1408 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1280 1408 0 ) ( -1279 1408 0 ) ( -1280 1409 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -768 1920 512 ) ( -768 1921 512 ) ( -767 1920 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -768 1920 128 ) ( -767 1920 128 ) ( -768 1920 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -768 1920 128 ) ( -768 1920 129 ) ( -768 1921 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 18
|
||||||
|
{
|
||||||
|
( -768 1152 0 ) ( -768 1153 0 ) ( -768 1152 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -896 1024 0 ) ( -896 1024 1 ) ( -895 1024 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -896 1152 0 ) ( -895 1152 0 ) ( -896 1153 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -512 1280 256 ) ( -512 1281 256 ) ( -511 1280 256 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -512 1280 128 ) ( -511 1280 128 ) ( -512 1280 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -512 1280 128 ) ( -512 1280 129 ) ( -512 1281 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 19
|
||||||
|
{
|
||||||
|
( -1536 512 0 ) ( -1536 513 0 ) ( -1536 512 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1664 384 0 ) ( -1664 384 1 ) ( -1663 384 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1664 512 0 ) ( -1663 512 0 ) ( -1664 513 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1280 640 512 ) ( -1280 641 512 ) ( -1279 640 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1280 640 128 ) ( -1279 640 128 ) ( -1280 640 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1280 640 128 ) ( -1280 640 129 ) ( -1280 641 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 20
|
||||||
|
{
|
||||||
|
( 768 768 0 ) ( 768 769 0 ) ( 768 768 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 640 640 0 ) ( 640 640 1 ) ( 641 640 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 640 768 0 ) ( 641 768 0 ) ( 640 769 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1024 896 256 ) ( 1024 897 256 ) ( 1025 896 256 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1024 896 128 ) ( 1025 896 128 ) ( 1024 896 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1024 896 128 ) ( 1024 896 129 ) ( 1024 897 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 21
|
||||||
|
{
|
||||||
|
( 128 1152 0 ) ( 128 1153 0 ) ( 128 1152 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 0 1024 0 ) ( 0 1024 1 ) ( 1 1024 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 0 1152 0 ) ( 1 1152 0 ) ( 0 1153 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 384 1280 512 ) ( 384 1281 512 ) ( 385 1280 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 384 1280 128 ) ( 385 1280 128 ) ( 384 1280 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 384 1280 128 ) ( 384 1280 129 ) ( 384 1281 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 22
|
||||||
|
{
|
||||||
|
( 896 -128 0 ) ( 896 -127 0 ) ( 896 -128 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 768 -256 0 ) ( 768 -256 1 ) ( 769 -256 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 768 -128 0 ) ( 769 -128 0 ) ( 768 -127 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1152 0 512 ) ( 1152 1 512 ) ( 1153 0 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1152 0 128 ) ( 1153 0 128 ) ( 1152 0 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1152 0 128 ) ( 1152 0 129 ) ( 1152 1 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 23
|
||||||
|
{
|
||||||
|
( -768 -1024 0 ) ( -768 -1023 0 ) ( -768 -1024 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -896 -1152 0 ) ( -896 -1152 1 ) ( -895 -1152 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -896 -1024 0 ) ( -895 -1024 0 ) ( -896 -1023 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -512 -896 512 ) ( -512 -895 512 ) ( -511 -896 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -512 -896 128 ) ( -511 -896 128 ) ( -512 -896 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -512 -896 128 ) ( -512 -896 129 ) ( -512 -895 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 24
|
||||||
|
{
|
||||||
|
( 512 -1152 0 ) ( 512 -1151 0 ) ( 512 -1152 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 384 -1280 0 ) ( 384 -1280 1 ) ( 385 -1280 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 384 -1152 0 ) ( 385 -1152 0 ) ( 384 -1151 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 768 -1024 512 ) ( 768 -1023 512 ) ( 769 -1024 512 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 768 -1024 128 ) ( 769 -1024 128 ) ( 768 -1024 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 768 -1024 128 ) ( 768 -1024 129 ) ( 768 -1023 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 25
|
||||||
|
{
|
||||||
|
( -1280 -512 0 ) ( -1280 -511 0 ) ( -1280 -512 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1408 -640 0 ) ( -1408 -640 1 ) ( -1407 -640 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1408 -512 0 ) ( -1407 -512 0 ) ( -1408 -511 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1024 -384 256 ) ( -1024 -383 256 ) ( -1023 -384 256 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -1024 -384 128 ) ( -1023 -384 128 ) ( -1024 -384 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1024 -384 128 ) ( -1024 -384 129 ) ( -1024 -383 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 26
|
||||||
|
{
|
||||||
|
( -384 -1280 0 ) ( -384 -1279 0 ) ( -384 -1280 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -512 -1408 0 ) ( -512 -1408 1 ) ( -511 -1408 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -512 -1280 0 ) ( -511 -1280 0 ) ( -512 -1279 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -128 -1152 896 ) ( -128 -1151 896 ) ( -127 -1152 896 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -128 -1152 128 ) ( -127 -1152 128 ) ( -128 -1152 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -128 -1152 128 ) ( -128 -1152 129 ) ( -128 -1151 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 27
|
||||||
|
{
|
||||||
|
( 896 -512 0 ) ( 896 -511 0 ) ( 896 -512 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 768 -640 0 ) ( 768 -640 1 ) ( 769 -640 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 768 -512 0 ) ( 769 -512 0 ) ( 768 -511 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1152 -384 256 ) ( 1152 -383 256 ) ( 1153 -384 256 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 1152 -384 128 ) ( 1153 -384 128 ) ( 1152 -384 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 1152 -384 128 ) ( 1152 -384 129 ) ( 1152 -383 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 28
|
||||||
|
{
|
||||||
|
( 640 1152 0 ) ( 640 1153 0 ) ( 640 1152 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 512 1024 0 ) ( 512 1024 1 ) ( 513 1024 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 512 1152 0 ) ( 513 1152 0 ) ( 512 1153 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 896 1280 256 ) ( 896 1281 256 ) ( 897 1280 256 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( 896 1280 128 ) ( 897 1280 128 ) ( 896 1280 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( 896 1280 128 ) ( 896 1280 129 ) ( 896 1281 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
|
// brush 29
|
||||||
|
{
|
||||||
|
( -1152 896 0 ) ( -1152 897 0 ) ( -1152 896 1 ) white [ 0 -1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1280 768 0 ) ( -1280 768 1 ) ( -1279 768 0 ) white [ 1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -1280 896 0 ) ( -1279 896 0 ) ( -1280 897 0 ) white [ -1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -896 1024 896 ) ( -896 1025 896 ) ( -895 1024 896 ) white [ 1 0 0 0 ] [ 0 -1 0 0 ] 0 1 1
|
||||||
|
( -896 1024 128 ) ( -895 1024 128 ) ( -896 1024 129 ) white [ -1 0 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
( -896 1024 128 ) ( -896 1024 129 ) ( -896 1025 128 ) white [ 0 1 0 0 ] [ 0 0 -1 0 ] 0 1 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// entity 1
|
// entity 1
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user